Skip to content

Commit 3c32158

Browse files
Add step to run just the failing test
1 parent b0874da commit 3c32158

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/conda-package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,14 @@ jobs:
219219
# create temporary empty folder to runs tests from
220220
# https://github.com/pytest-dev/pytest/issues/11904
221221
run: mkdir -p ${GITHUB_WORKSPACE}/test_tmp
222+
- name: Run test_roll
223+
working-directory: ${{ github.workspace }}/test_tmp
224+
env:
225+
SYCL_CACHE_PERSISTENT: 1
226+
run: |
227+
. $CONDA/etc/profile.d/conda.sh
228+
conda activate ${{ env.TEST_ENV_NAME }}
229+
python -m pytest -s -v --pyargs $MODULE_NAME.tests.test_usm_ndarray_manipulation::test_roll_out_bounds_shifts
222230
- name: Run tests
223231
working-directory: ${{ github.workspace }}/test_tmp
224232
env:

0 commit comments

Comments
 (0)