Skip to content

Commit

Permalink
use file re
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoralez committed Jul 15, 2024
1 parent 16c6207 commit 33e93b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: pip install ./

- name: Run all tests
run: nbdev_test --n_workers 0 --do_print --timing --skip_file_glob 'electricity' --flags 'polars'
run: nbdev_test --n_workers 0 --do_print --timing --skip_file_re 'electricity' --flags 'polars'

run-macos-tests:
runs-on: macos-13
Expand All @@ -65,7 +65,7 @@ jobs:
run: pip install ./

- name: Run local tests
run: nbdev_test --n_workers 0 --do_print --timing --skip_file_glob "*(distributed|electricity)*" --flags 'polars'
run: nbdev_test --n_workers 0 --do_print --timing --skip_file_re "(distributed|electricity)" --flags 'polars'

run-windows-tests:
runs-on: windows-latest
Expand All @@ -87,7 +87,7 @@ jobs:
run: pip install uv && uv pip install ".[dev]" --system

- name: Run local tests
run: nbdev_test --n_workers 0 --do_print --timing --skip_file_glob "(distributed|electricity)" --flags 'polars'
run: nbdev_test --n_workers 0 --do_print --timing --skip_file_re "(distributed|electricity)" --flags 'polars'

check-deps:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 33e93b3

Please sign in to comment.