From fc4c8dea3370ea2c7c7194dbf0d0f955e7969609 Mon Sep 17 00:00:00 2001 From: Jesse Bakker Date: Tue, 27 Feb 2024 18:12:46 +0100 Subject: [PATCH] Tighten filter on which ignored tests run in CI --- .github/workflows/unit.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index f5ceac0bf1..9737477e96 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -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: |