From d3a572ae7dd2b2c1b3db8bafe1338a3cac8e950b Mon Sep 17 00:00:00 2001 From: Jordan Cook Date: Fri, 15 Apr 2022 18:28:23 -0500 Subject: Set stress test multiplier back to 5 for pre-deploy tests --- noxfile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'noxfile.py') diff --git a/noxfile.py b/noxfile.py index 68348c5..737e266 100644 --- a/noxfile.py +++ b/noxfile.py @@ -68,9 +68,11 @@ def coverage(session): def stress_test(session): """Run concurrency tests with a higher stress test multiplier""" cmd = f'pytest {INTEGRATION_TESTS} -rs -k concurrency' + multiplier = session.posargs[0] if session.posargs else STRESS_TEST_MULTIPLIER + session.run( *cmd.split(' '), - env={'STRESS_TEST_MULTIPLIER': str(STRESS_TEST_MULTIPLIER)}, + env={'STRESS_TEST_MULTIPLIER': str(multiplier)}, ) -- cgit v1.2.1