Skip to content

Commit

Permalink
Ignore kernel/wave tests in ci and release smoketest scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottTodd committed Nov 8, 2024
1 parent 645435c commit c11a7a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Run unit tests
if: ${{ !cancelled() }}
run: |
pytest -n 4 --capture=tee-sys -vv .
pytest -n 4 --capture=tee-sys -vv --ignore=tests/kernel/wave/ .
- name: Run LIT tests
if: ${{ !cancelled() }}
Expand Down
2 changes: 1 addition & 1 deletion build_tools/post_build_release_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ pip install --no-index -f "${WHEELHOUSE_DIR}" torchvision
pip freeze

# Run tests
pytest -n 4 "${REPO_ROOT}"
pytest -n 4 --ignore=tests/kernel/wave/ "${REPO_ROOT}"
2 changes: 1 addition & 1 deletion build_tools/post_pypi_release_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ pip uninstall -y shark-turbine iree-turbine iree-compiler iree-runtime
pip install iree-turbine

# Run tests
pytest -n 4 "${REPO_ROOT}"
pytest -n 4 --ignore=tests/kernel/wave/ "${REPO_ROOT}"

0 comments on commit c11a7a7

Please sign in to comment.