Skip to content

Commit

Permalink
Split running ctest and pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
marbre committed Aug 26, 2024
1 parent 46b34c9 commit 3247aec
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci_linux_x64_asan-libshortfin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,17 @@ jobs:
cmake --build . --target all
pip install -v -e .
- name: Test libshortfin
- name: Run ctest
if: ${{ !cancelled() }}
env:
CTEST_OUTPUT_ON_FAILURE: 1
run: |
eval "$(pyenv init -)"
cd ${{ env.LIBSHORTFIN_DIR }}/build
cmake --build . --target test
- name: Run pytest
if: ${{ !cancelled() }}
run: |
eval "$(pyenv init -)"
cd ${{ env.LIBSHORTFIN_DIR }}
pytest -m "not requires_amd_gpu"

0 comments on commit 3247aec

Please sign in to comment.