summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraidanfnv <aidanf@nvidia.com>2025-10-15 17:03:56 -0700
committerGitHub <noreply@github.com>2025-10-16 00:03:56 +0000
commitd1a935c683ac1eb93d95587ee26bdaae7eb17e31 (patch)
tree23b56af82058a5d106c701b2b027dcf773f9bd53
parent907410f6a52cf4e7538870ebf5aeb88858f97973 (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
-rw-r--r--.github/workflows/ci-slang-test.yml3
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]"