diff options
| author | Harsh Aggarwal (NVIDIA) <haaggarwal@nvidia.com> | 2025-08-20 11:09:19 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-20 05:39:19 +0000 |
| commit | e4a7129b84692ddc3c586f0d0dde95e80e173ed8 (patch) | |
| tree | 4f924ebe0a0ee35c52286a2a240ed973725cb925 /.github | |
| parent | 785548a49538a8dfc1ee5d7e650b27c5607e43c1 (diff) | |
Fix#8076 - Re-enable slangpy test (#8087)
Commit bdda8a9 from PR #7862 had to disable some slangy tests in ci.yml
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 225677f1a..7c351082d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -351,8 +351,7 @@ jobs: Get-ChildItem -Path "$SITE_PACKAGES\slangpy" | ForEach-Object { Write-Host "$($_.Name) - Last Modified: $($_.LastWriteTime)" } Write-Host "Running pytest on slangpy tests..." $env:PYTHONPATH = "$SITE_PACKAGES" - # Disable some slangpy tests temporarily. This should be enabled back when https://github.com/shader-slang/slangpy/issues/274 is closed. - python -m pytest "$SITE_PACKAGES\slangpy\tests" -v -k "not (test_nested_structs and DeviceType.cuda) and not (test_cursor_read_write and DeviceType.cuda) and not (test_fill_from_kernel and DeviceType.cuda) and not (test_wrap_buffer and DeviceType.cuda) and not (test_apply_changes and DeviceType.cuda) and not (test_shader_cursor and DeviceType.cuda)" + python -m pytest "$SITE_PACKAGES\slangpy\tests" -v - uses: actions/upload-artifact@v4 if: steps.filter.outputs.should-run == 'true' && ! matrix.full-gpu-tests with: |
