Skip to content

Commit

Permalink
fix ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
JSabadin committed Jan 9, 2025
1 parent ec333fc commit cb5f7ad
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit cb5f7ad

Please sign in to comment.