summaryrefslogtreecommitdiff
path: root/noxfile.py
diff options
context:
space:
mode:
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)})