chore(Dockerfile): run tests in all dirs

This commit is contained in:
EvB 2016-12-28 14:40:08 -05:00
parent 86a40d02c7
commit a337e547ec
2 changed files with 2 additions and 2 deletions

View file

@ -159,7 +159,7 @@ RUN if [ "$RUN_TESTS" = true ]; then \
RUN if [ "$RUN_TESTS" = true ]; then \
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=3600 --verbose \
--show-count -x --color=no test; \
--show-count -x --color=no; \
fi
RUN if [ "$RUN_TESTS" = true ]; then \

View file

@ -1,6 +1,6 @@
[tool:pytest]
norecursedirs = .* *.egg build dist docs
testpaths = test
testpaths = ./
confcutdir = test
[coverage:run]