Skip to content

Commit

Permalink
Add one more combination of test runs under gdb
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Dec 25, 2024
1 parent 283af9f commit dfb521f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,13 @@ jobs:
conda activate ${{ env.TEST_ENV_NAME }}
gdb --batch -ex r -ex 'info sharedlibrary' -ex 'set print elements 1000' -ex bt --args ${CONDA_PREFIX}/bin/python -m pytest -q -ra --disable-warnings --pyargs dpctl.tests.test_usm_ndarray_sorting dpctl.tests.test_usm_ndarray_top_k -vv || true
- name: Run test_usm_ndarray_top_k under gdb 2
- name: Run test_usm_ndarray_top_k under gdb 3
run: |
. $CONDA/etc/profile.d/conda.sh
conda activate ${{ env.TEST_ENV_NAME }}
gdb --batch -ex r -ex 'info sharedlibrary' -ex 'set print elements 1000' -ex bt --args ${CONDA_PREFIX}/bin/python -m pytest -q -ra --disable-warnings --pyargs dpctl.tests.test_usm_ndarray_unique dpctl.tests.test_usm_ndarray_top_k -vv || true
- name: Run test_usm_ndarray_top_k under gdb 4
run: |
. $CONDA/etc/profile.d/conda.sh
conda activate ${{ env.TEST_ENV_NAME }}
Expand Down

0 comments on commit dfb521f

Please sign in to comment.