From 8654728e28c18abfd29cf5e81aa1c3caaf70086d Mon Sep 17 00:00:00 2001 From: Linsho Kaku Date: Tue, 1 Oct 2024 16:17:19 +0900 Subject: [PATCH] wip --- .flexci/windows/test.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.flexci/windows/test.ps1 b/.flexci/windows/test.ps1 index e6a2ee24..f2b504df 100644 --- a/.flexci/windows/test.ps1 +++ b/.flexci/windows/test.ps1 @@ -78,7 +78,8 @@ RunOrDie python -m pip install -e . # Unit Test $Env:JUPYTER_PLATFORM_DIRS = "1" # RunOrDie python -m pytest -m '"not mpi"' tests -$test_retval = RunWithTimeout -timeout 7200 -output ./ppe_test_log.txt -- python -m pytest -m '"not mpi"' tests +$pytest_opts = "-m", '"not mpi"' +$test_retval = RunWithTimeout -timeout 7200 -output ./ppe_test_log.txt -command python -params '-m pytest -m "not mpi" tests' if ($test_retval -ne 0) { echo "------------------------------------------------------------------------------------------" Get-Content ppe_test_log.txt