We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 187c3bc commit 6b2d7d1Copy full SHA for 6b2d7d1
.travis.yml
@@ -20,7 +20,10 @@ install:
20
- pip install flake8 # eventually worth
21
22
script:
23
+ # Run tests
24
- PYTHONPATH=. nosetests -s -v --with-doctest --with-cov --cover-package . --logging-level=INFO -v .
25
+ # Actually run all the scripts, contributing to coverage
26
+ - bash -c 'failed=""; for f in [^_]*py; do python `which coverage` run -a $f || failed+=" $f"; echo "I: done $f. Exit code $?"; done; [ -z "$failed" ] || { echo "Failed: $failed"; exit 1; }'
27
# for now failure in flaking is ignored
28
- flake8 *py || echo "PEP8 the code"
29
0 commit comments