summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-08-14 21:53:40 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-08-14 21:58:30 -0500
commit9a54c5623ce1ec682a0cb5eab0d86ba780b96030 (patch)
tree3e379d7539a682c8811cfd206a42d3675eb9af49 /noxfile.py
parent8457dc0afbd3207e9fb7dbbc4da6dd3251d6ad68 (diff)
downloadrequests-cache-9a54c5623ce1ec682a0cb5eab0d86ba780b96030.tar.gz
Increase integration test timeout for DynamoDB, since it has a longer startup time
Diffstat (limited to 'noxfile.py')
-rw-r--r--noxfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/noxfile.py b/noxfile.py
index 7da8c34..fad58ab 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -27,7 +27,7 @@ XDIST_ARGS = '--numprocesses=auto --dist=loadfile' # Run tests in parallel, gro
def test(session):
"""Run tests for a specific python version"""
test_paths = session.posargs or [UNIT_TESTS]
- session.install('.', 'pytest', 'pytest-order', 'pytest-xdist', 'requests-mock', 'timeout-decorator')
+ session.install('.', 'pytest', 'pytest-xdist', 'requests-mock', 'timeout-decorator')
cmd = f'pytest -rs {XDIST_ARGS}'
session.run(*cmd.split(' '), *test_paths)