Skip to content

Commit 28862b1

Browse files
committed
skip task scheduling test
Signed-off-by: Boyan Li <boyanl@nvidia.com>
1 parent b0a0c4c commit 28862b1

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
run: pip install dist/*.whl
184184

185185
- name: Run tests
186-
run: pytest --durations=10 --junitxml=test-results.xml -m "not benchmark" -k "not int64_index" .
186+
run: pytest --ignore experimental --durations=10 --junitxml=test-results.xml -m "not benchmark" -k "not int64_index" .
187187

188188
- name: Report test results
189189
if: ${{ !cancelled() }}
@@ -197,7 +197,7 @@ jobs:
197197
- name: Run benchmarks
198198
if: matrix.python-version == '3.10'
199199
continue-on-error: true
200-
run: pytest --durations=10 --junitxml=benchmark-results.xml -m "benchmark" .
200+
run: pytest --ignore experimental --durations=10 --junitxml=benchmark-results.xml -m "benchmark" .
201201

202202
- name: Report benchmark results
203203
if: ${{ !cancelled() && matrix.python-version == '3.10' }}

experimental/task_scheduling/test/test_import.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5+
import pytest
6+
7+
pytest.importorskip("cuda.lang", reason="Skipping task_scheduling test: module not found")
8+
pytest.importorskip("task_scheduling", reason="Skipping task_scheduling test: module not found")
9+
510

611
def test_imports():
712
import cuda.lang

0 commit comments

Comments
 (0)