summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-02-21 13:42:55 -0600
committerJordan Cook <jordan.cook@pioneer.com>2022-02-22 18:53:29 -0600
commita5e87b2cb43a5407c20eedb3ade3a2f4935d79d2 (patch)
tree9395e572b8b297b758c7caad198148da092d1ad1 /noxfile.py
parent3d9d4c4be3fe4f46f5e48e547b8ffa0cf8ce07f8 (diff)
downloadrequests-cache-a5e87b2cb43a5407c20eedb3ade3a2f4935d79d2.tar.gz
Run additional stress tests with multiple processes
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 7773dcf..3b72f50 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -57,7 +57,7 @@ def coverage(session):
def stress_test(session):
"""Run concurrency tests with a higher stress test multiplier"""
multiplier = session.posargs[0] if session.posargs else 5
- cmd = f'pytest {INTEGRATION_TESTS} -rs -k multithreaded'
+ cmd = f'pytest {INTEGRATION_TESTS} -rs -k concurrency'
session.run(*cmd.split(' '), env={'STRESS_TEST_MULTIPLIER': str(multiplier)})