fix(Dockerfile): use curr dir for tests
This commit is contained in:
parent
a45a1968c9
commit
d4c7e6d323
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ RUN if [ "$RUN_TESTS" = true ]; then \
|
||||||
|
|
||||||
RUN if [ "$RUN_TESTS" = true ]; then \
|
RUN if [ "$RUN_TESTS" = true ]; then \
|
||||||
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=3600 --verbose \
|
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=3600 --verbose \
|
||||||
--show-count -x --color=no; \
|
--show-count -x --color=no ./; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
RUN if [ "$RUN_TESTS" = true ]; then \
|
RUN if [ "$RUN_TESTS" = true ]; then \
|
||||||
|
|
Reference in a new issue