Skip to content

Commit

Permalink
Tighten filter on which ignored tests run in CI (#2430)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse-Bakker authored Feb 27, 2024
1 parent 25f111b commit 10aed02
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,11 @@ jobs:
SN_DRIVER: ${{ secrets.SN_DRIVER }}
shell: bash
run: |
cargo test -p 'dozer-ingestion-*' --lib --no-fail-fast -- --ignored
cargo test \
-p dozer-ingestion-postgres \
-p dozer-ingestion-kafka \
-p dozer-ingestion-mysql \
--lib --no-fail-fast -- --ignored
- name: Run tests
shell: bash
run: |
Expand Down

0 comments on commit 10aed02

Please sign in to comment.