File tree Expand file tree Collapse file tree
experimental/task_scheduling/test Expand file tree Collapse file tree Original file line number Diff line number Diff 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' }}
Original file line number Diff line number Diff line change 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
611def test_imports ():
712 import cuda .lang
You can’t perform that action at this time.
0 commit comments