chore(Dockerfile): up timeout on tests to 2h
This commit is contained in:
parent
7e4d1df0e5
commit
954d82ff8b
1 changed files with 3 additions and 2 deletions
|
@ -157,13 +157,14 @@ RUN if [ "$RUN_TESTS" = true ]; then \
|
|||
venv/bin/pip install -r requirements-tests.txt ;\
|
||||
fi
|
||||
|
||||
|
||||
RUN if [ "$RUN_TESTS" = true ]; then \
|
||||
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=3600 --verbose \
|
||||
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=7200 --verbose \
|
||||
--show-count -x --color=no ./; \
|
||||
fi
|
||||
|
||||
RUN if [ "$RUN_TESTS" = true ]; then \
|
||||
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=3600 --verbose \
|
||||
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=7200 --verbose \
|
||||
--show-count -x --color=no test/registry_tests.py ; \
|
||||
fi
|
||||
|
||||
|
|
Reference in a new issue