We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af20e5f commit b850d0dCopy full SHA for b850d0d
test/test_pytest_parallel.py
@@ -52,7 +52,7 @@ def run_pytest_parallel_test(test_name, n_workers, scheduler, capfd, suffix=""):
52
stderr_file_path.unlink(missing_ok=True)
53
54
test_env = os.environ.copy()
55
- # To test pytest_parallel, we can need to launch pytest with it
+ # To test pytest_parallel, we need to launch pytest with pytest_parallel as a plugin:
56
if "PYTEST_DISABLE_PLUGIN_AUTOLOAD" not in test_env:
57
test_env["PYTEST_DISABLE_PLUGIN_AUTOLOAD"] = "1"
58
cmd = f"mpiexec -n {n_workers} pytest -p pytest_parallel.plugin -s -ra -vv --color=no --scheduler={scheduler} {test_file_path}"
0 commit comments