From 382545eca2ed8a4526392122c903244900587643 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..7d2f484994 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: |