diff --git a/.github/workflows/test_cli_cpu_ipex.yaml b/.github/workflows/test_cli_cpu_ipex.yaml index c5672249..f0f182f8 100644 --- a/.github/workflows/test_cli_cpu_ipex.yaml +++ b/.github/workflows/test_cli_cpu_ipex.yaml @@ -30,8 +30,7 @@ jobs: contains( github.event.pull_request.labels.*.name, 'cli_cpu_ipex') }} - runs-on: - group: aws-c7i-8xlarge-plus + runs-on: ubuntu-latest container: image: ghcr.io/huggingface/optimum-benchmark:latest-cpu @@ -44,8 +43,8 @@ jobs: run: | pip install -e .[testing,ipex,diffusers,timm] - - name: Run tests (sequential) - run: FORCE_SEQUENTIAL=1 pytest tests/test_cli.py -s -k "cli and cpu and ipex" + - name: Run tests + run: pytest tests/test_cli.py -s -k "cli and cpu and ipex" - - name: Run examples (sequential) - run: FORCE_SEQUENTIAL=1 pytest tests/test_examples.py -s -k "cli and cpu and ipex" + # - name: Run examples + # run: pytest tests/test_examples.py -s -k "cli and cpu and ipex" diff --git a/.github/workflows/test_cli_cpu_openvino.yaml b/.github/workflows/test_cli_cpu_openvino.yaml index c5750c80..19cb8640 100644 --- a/.github/workflows/test_cli_cpu_openvino.yaml +++ b/.github/workflows/test_cli_cpu_openvino.yaml @@ -30,8 +30,7 @@ jobs: contains( github.event.pull_request.labels.*.name, 'cli_cpu_openvino') }} - runs-on: - group: aws-c7i-8xlarge-plus + runs-on: ubuntu-latest container: image: ghcr.io/huggingface/optimum-benchmark:latest-cpu @@ -45,8 +44,8 @@ jobs: pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu pip install -e .[testing,openvino,diffusers,timm] - - name: Run tests (sequential) - run: FORCE_SEQUENTIAL=1 pytest tests/test_cli.py -s -k "cli and cpu and openvino" + - name: Run tests + run: pytest tests/test_cli.py -s -k "cli and cpu and openvino" - - name: Run examples (sequential) - run: FORCE_SEQUENTIAL=1 pytest tests/test_examples.py -s -k "cli and cpu and openvino" + # - name: Run examples + # run: pytest tests/test_examples.py -s -k "cli and cpu and openvino"