summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2017-01-01 16:44:01 +0100
committerMarcel Hellkamp <marc@gsites.de>2017-01-01 16:44:01 +0100
commitc0a5bf4bab2caf65b992fc45640f77b6f1ecf256 (patch)
treef54b89e6177d63cd79436bbaf428386e4f09fb41
parent523f6a6b0445a13400037329874f6a71e2c43dfc (diff)
downloadbottle-travis-fix.tar.gz
Trying to fix tarvis builds with coverage.travis-fix
-rw-r--r--.travis.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 01c9918..19417cb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,13 +20,14 @@ install:
- pip install -U coverage coveralls
script:
- - python -m coverage run --source=bottle.py test/testall.py fast
- - python -m coverage combine
- - python -m coverage report 2>&1
+ - python test/testall.py fast
notifications:
irc: "irc.freenode.org#bottlepy"
on_success: "never"
after_success:
- coveralls
+ - python -m coverage run --source=./bottle.py ./test/testall.py fast
+ - python -m coverage combine
+ - python -m coverage report 2>&1
+ - coveralls