diff --git a/test/__main__.py b/test/__main__.py index abadcb93..ba38d4e6 100644 --- a/test/__main__.py +++ b/test/__main__.py @@ -12,7 +12,7 @@ running_out = 0 for file in here.iterdir(): if file.is_file() and file.name.startswith("test"): - cmd = f"pytest -n 3 {file} " + flags + cmd = f"pytest -n 2 {file} " + flags out = subprocess.run(cmd, shell=True).returncode running_out = max(running_out, out) sys.exit(running_out)