From cb5f7ad1403bb56bfe1bd43e1fb415cbdc1e9843 Mon Sep 17 00:00:00 2001 From: Jernej Sabadin Date: Thu, 9 Jan 2025 19:14:22 +0100 Subject: [PATCH] fix ci.yaml --- .github/workflows/ci.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1637ad30..eea2e97f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -110,13 +110,18 @@ jobs: path: coverage.xml overwrite: true - test-dataset: - needs: tests - runs-on: ubuntu-latest + sequential-test: + needs: + - pre-commit + - docs strategy: + fail-fast: false matrix: + os: [ubuntu-latest, windows-latest, macos-latest] python-version: ['3.8', '3.10'] + runs-on: ${{ matrix.os }} + steps: - name: Checkout uses: actions/checkout@v4 @@ -132,5 +137,5 @@ jobs: - name: Install package run: pip install -e .[dev] - - name: Run test_dataset.py - run: pytest luxonis_ml/tests/test_data/test_dataset.py + - name: Run specific test + run: pytest tests/test_data/test_dataset.py \ No newline at end of file