Test examples #498
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CLI CPU IPEX Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
jobs: | |
run_cli_cpu_ipex_tests: | |
if: ${{ | |
(github.event_name == 'push') || | |
(github.event_name == 'workflow_dispatch') || | |
contains( github.event.pull_request.labels.*.name, 'cli') || | |
contains( github.event.pull_request.labels.*.name, 'cpu') || | |
contains( github.event.pull_request.labels.*.name, 'ipex') || | |
contains( github.event.pull_request.labels.*.name, 'cli_cpu_ipex') | |
}} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install requirements | |
run: | | |
pip install -e .[testing,ipex,diffusers,timm] | |
- name: Run tests | |
run: pytest tests/test_cli.py -s -k "cli and cpu and ipex" | |
# examples require specific machines | |
# - if: ${{ | |
# (github.event_name == 'push') || | |
# (github.event_name == 'workflow_dispatch') || | |
# contains( github.event.pull_request.labels.*.name, 'examples') | |
# }} | |
# name: Run examples | |
# run: pytest tests/test_examples.py -s -k "cli and cpu and ipex" |