diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-18 07:02:35 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-18 07:02:35 -0400 |
commit | 10528485ee41e42f3287af4be3864689ef2553bf (patch) | |
tree | cd62b3f5f815f272870cd6616fa2ca79872ab136 | |
parent | 3438d925aace40dfd0c37b9182de185fd72d4933 (diff) | |
download | python-coveragepy-git-10528485ee41e42f3287af4be3864689ef2553bf.tar.gz |
I install coverage accidentally
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 0915b8c3..97679e15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,11 +17,10 @@ env: - TOXENV=py27 COVERAGE_COVERAGE=yes install: - - pip install -r requirements/tox.pip codecov - - echo $PATH - - which coverage + - pip install -r requirements/tox.pip script: - tox - if [ $COVERAGE_COVERAGE == 'yes' ]; then python igor.py combine_html; fi + - if [ $COVERAGE_COVERAGE == 'yes' ]; then pip install codecov; fi - if [ $COVERAGE_COVERAGE == 'yes' ]; then codecov; fi |