We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ba8d82 commit 27600e8Copy full SHA for 27600e8
.travis.yml
@@ -24,7 +24,7 @@ script:
24
# Run tests
25
- PYTHONPATH=. nosetests -s -v --with-doctest --with-cov --cover-package . --logging-level=INFO -v .
26
# Actually run all the scripts, contributing to coverage
27
- - ./run_all.sh
+ - PYTHONPATH=. ./run_all.sh
28
# for now failure in flaking is ignored
29
- flake8 *py || echo "PEP8 the code"
30
__init__.py
run_all.sh
@@ -12,7 +12,7 @@ else
12
COVERAGE=''
13
fi
14
for f in */[^_]*py; do
15
- python $COVERAGE $f || failed+=" $f"
+ PYTHONPATH=. python $COVERAGE $f || failed+=" $f"
16
echo "I: done $f. Exit code $?"
17
done;
18
0 commit comments