From 4fe6f3ed1033487c85cfe8645ee6cae736570182 Mon Sep 17 00:00:00 2001 From: burtenshaw Date: Mon, 11 Aug 2025 10:17:47 +0200 Subject: [PATCH] remove transformers integrations test from CI --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd1a53f4..640dd229 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,8 @@ jobs: strategy: fail-fast: false matrix: - test: ['unit', 'parity'] - os: [ubuntu-latest, windows-latest] + test: ['unit'] + os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -59,7 +59,3 @@ jobs: if: ${{ matrix.test == 'unit' }} run: | python -m pytest -n 2 --dist loadfile -sv ./tests/ --ignore=./tests/test_trainer_evaluator_parity.py - - name: Integration test with transformers - if: ${{ matrix.test == 'parity' }} - run: | - python -m pytest -n 2 --dist loadfile -sv ./tests/test_trainer_evaluator_parity.py