From c07f07bd32263ebc91e5c2d4ef280f0a041c3749 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Sun, 28 Jan 2018 02:30:31 +0100 Subject: [PATCH] added coverage calculator --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e35e432..7a4845f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,10 +17,12 @@ install: - pip install -e . - pip install -r requirements-docs.txt - pip install -r requirements-pytest.txt + - pip install codecov # run tests script: - pytest - cd docs # build the docs on 2.7 and 3.6 (sphinx requires 2.7 or >=3.4) - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then make html; fi - - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then make html; fi \ No newline at end of file + - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then make html; fi + - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then codecov; fi \ No newline at end of file