We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f65c424 commit 67c8caaCopy full SHA for 67c8caa
1 file changed
.github/workflows/gpu-tests.yml
@@ -86,13 +86,10 @@ jobs:
86
run: |
87
# Run tests that are known to work with CuPy
88
# Skip processes executor which doesn't work with CuPy
89
- pytest -v \
90
- cubed/tests/test_array_api.py::test_arange \
91
- cubed/tests/test_array_api.py::test_asarray \
92
- cubed/tests/test_array_api.py::test_ones \
93
- cubed/tests/test_array_api.py::test_zeros \
94
- cubed/tests/test_array_api.py::test_full \
95
- -k "not processes" \
+ # Use -k to select specific tests by pattern
+ pytest -v cubed/tests/test_array_api.py \
+ -k "test_arange or test_ones or test_asarray" \
+ --ignore-glob="*processes*" \
96
--maxfail=5 2>&1 | tee pytest_results.txt || echo "Note: Some tests failed (investigating GPU/zarr compatibility)"
97
98
- name: Document known issues
0 commit comments