From 463d6793d0106856179f5ad641d5d64640282c25 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Sun, 28 Jan 2018 13:06:26 +0100 Subject: [PATCH] changed url of appveyor badge and added redis for testing --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8949427..03484d6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # pyhamtools -[![Linux & macOS Build Status](https://travis-ci.org/dh1tw/pyhamtools.svg?branch=master)](https://travis-ci.org/dh1tw/pyhamtools) -[![Windows Build status](https://ci.appveyor.com/api/projects/status/github/dh1tw/pyhamtools/branch/master?svg=true)](https://ci.appveyor.com/api/projects/status/github/dh1tw/pyhamtools) +[![Build Status](https://travis-ci.org/dh1tw/pyhamtools.svg?branch=master)](https://travis-ci.org/dh1tw/pyhamtools) +[![Build status](https://ci.appveyor.com/api/projects/status/8rfgr7x6w1arixrh?svg=true)](https://ci.appveyor.com/project/dh1tw/pyhamtools) [![codecov](https://codecov.io/gh/dh1tw/pyhamtools/branch/master/graph/badge.svg)](https://codecov.io/gh/dh1tw/pyhamtools) [![PyPI version](https://badge.fury.io/py/pyhamtools.svg)](https://badge.fury.io/py/pyhamtools) @@ -113,11 +113,21 @@ $ export QRZ_PWD="" ``` +In order to perform the tests related to the [redis](https://redis.io/) key/value +store, a redis server has to be up & running. + +```bash + +$ sudo apt install redis-server +$ redis-server + +``` + To run the tests, simply execute: ```bash -$ pytest +$ pytest --cov pyhamtools ```