From 39196b96e768a3baecd0c5d46eeaa7c9bf1ed698 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Sun, 28 Jan 2018 13:18:34 +0100 Subject: [PATCH] changed order of coverage uplaod --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 69c4346..4180717 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,8 +21,8 @@ install: # run tests script: - pytest --cov=./ + - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then codecov; fi - 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 - - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then codecov; fi \ No newline at end of file + - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then make html; fi \ No newline at end of file