File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -248,14 +248,13 @@ jobs:
248248
249249 python -m pip show isaacsim
250250
251- # Run tests using isaaclab.bat with pytest
252- # Run pytest directly with filter to exclude isaaclab_tasks
251+ # Set environment variables for test filtering
252+ $env:TEST_RESULT_FILE = "general-tests-windows-report.xml"
253+ $env:TEST_EXCLUDE_PATTERN = "isaaclab_tasks"
254+
255+ # Run tests using conftest.py which handles Windows-specific execution
253256 & python -m pytest tools `
254- --ignore=tools/conftest.py `
255- -m "windows" `
256- -k "not isaaclab_tasks" `
257- -v `
258- --junitxml=reports/general-tests-windows-report.xml
257+ -v
259258
260259 $testExitCode = $LASTEXITCODE
261260 Write-Host "Tests completed with exit code: $testExitCode"
You can’t perform that action at this time.
0 commit comments