From de038b76c82a95978679291c2be877a3966c1973 Mon Sep 17 00:00:00 2001 From: Ashwin Srinath <3190405+shwina@users.noreply.github.com> Date: Fri, 24 Jan 2025 21:08:45 -0500 Subject: [PATCH] cuda.parallel: invoke pytest directly rather than via `python -m pytest` (#3523) Co-authored-by: Ashwin Srinath --- ci/test_python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_python.sh b/ci/test_python.sh index 34900fdb8e0..1bc8f3a8370 100755 --- a/ci/test_python.sh +++ b/ci/test_python.sh @@ -25,7 +25,7 @@ for module in cuda_parallel cuda_cooperative; do begin_group "⚙️ ${module} site-packages" pip freeze end_group "⚙️ ${module} site-packages" - run_command "🚀 Pytest ${module}" python -m pytest -v ./tests + run_command "🚀 Pytest ${module}" pytest -v ./tests deactivate popd >/dev/null