diff options
-rw-r--r-- | tox.ini | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -26,9 +26,14 @@ python = | |||
26 | 3.10: py310 | 26 | 3.10: py310 |
27 | 27 | ||
28 | [testenv] | 28 | [testenv] |
29 | deps = pytest | 29 | deps = |
30 | pytest | ||
31 | pytest-timeout | ||
30 | commands = {envpython} run_tests | 32 | commands = {envpython} run_tests |
31 | setenv = | 33 | setenv = |
32 | GIT_AUTHOR_NAME = Repo test author | 34 | GIT_AUTHOR_NAME = Repo test author |
33 | GIT_COMMITTER_NAME = Repo test committer | 35 | GIT_COMMITTER_NAME = Repo test committer |
34 | EMAIL = repo@gerrit.nodomain | 36 | EMAIL = repo@gerrit.nodomain |
37 | |||
38 | [pytest] | ||
39 | timeout = 300 | ||