You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add --extra-skip-list-suffixes options into test-triton.sh (#5093)
`pytest-skip==0.2.0` allows to specify multiple skiplists via semicolon
(for details:
https://github.com/vlad-penkin/pytest-skip/releases/tag/v0.2.0).
This pull request adds minimal support for this change.
Tested locally: `./scripts/test-triton.sh --interpreter
--skip-pytorch-install --skip-pip-install --extra-skip-list-suffixes
sort,sort2`.
For this I created 3 files in `skiplist/default` folder:
`interpreter.txt`, `interpreter-sort.txt` and `interpreter-sort2.txt`.
If there is no file matching the suffix, the script will show an error:
```bash
./scripts/test-triton.sh --interpreter --skip-pytorch-install --skip-pip-install --extra-skip-list-suffixes sort,sort3
**** Skipping installation of pip dependencies ****
**** Skipping installation of pytorch ****
***************************************************
****** Running Triton Interpreter tests ******
***************************************************
ERROR: /home/jovyan/intel-xpu-backend-for-triton/scripts/skiplist/default/interpreter-sort3.txt not found
```
Signed-off-by: Anatoly Myachev <[email protected]>
0 commit comments