diff options
| author | aidanfnv <aidanf@nvidia.com> | 2025-10-15 17:03:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-16 00:03:56 +0000 |
| commit | d1a935c683ac1eb93d95587ee26bdaae7eb17e31 (patch) | |
| tree | 23b56af82058a5d106c701b2b027dcf773f9bd53 /.github/workflows | |
| parent | 907410f6a52cf4e7538870ebf5aeb88858f97973 (diff) | |
[CI] Skip slangpy test_blit.py::test_generate_mips for CUDA (#8725)
This skips a new test from slangpy that is hitting an internal assert in
slang CI, uncaught in testing due to slangpy's CI testing using release
builds.
See https://github.com/shader-slang/slangpy/issues/575 for details
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci-slang-test.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci-slang-test.yml b/.github/workflows/ci-slang-test.yml index 391716d2e..f84e5139a 100644 --- a/.github/workflows/ci-slang-test.yml +++ b/.github/workflows/ci-slang-test.yml @@ -211,4 +211,5 @@ jobs: echo "Running pytest on slangpy tests..." export PYTHONPATH="$SITE_PACKAGES" - python -m pytest "$SITE_PACKAGES/slangpy/tests" -ra -n auto --maxprocesses=3 + python -m pytest "$SITE_PACKAGES/slangpy/tests" -ra -n auto --maxprocesses=3 \ + --deselect "device/test_blit.py::test_generate_mips[compute-DeviceType.cuda]" |
