From a5e87b2cb43a5407c20eedb3ade3a2f4935d79d2 Mon Sep 17 00:00:00 2001 From: Jordan Cook Date: Mon, 21 Feb 2022 13:42:55 -0600 Subject: Run additional stress tests with multiple processes --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'noxfile.py') 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)}) -- cgit v1.2.1