From 8ba888d46f0b3b56d2b9b84ce5e5652aa9dad8a6 Mon Sep 17 00:00:00 2001 From: --show-origin Date: Wed, 10 Apr 2024 00:15:54 +0500 Subject: [PATCH] Run wildcard queue control actions test as dedicated step on CI --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b42d5e73..f3914872 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,6 +42,12 @@ jobs: run: cargo test --locked --all-features --all-targets env: # set this explicitly so integration tests will run FAKTORY_URL: tcp://127.0.0.1:7419 + # commands executed during the following test affect all the queues on the Faktory server, + # so we perform this test in a dedicated - isolated - step, re-using the the Faktory container + - name: cargo test --locked (queue control actions) + run: cargo test --locked --all-features --all-targets queue_control_actions_wildcard -- --include-ignored + env: # set this explicitly so integration tests will run + FAKTORY_URL: tcp://127.0.0.1:7419 # https://github.com/rust-lang/cargo/issues/6669 - name: cargo test --doc run: cargo test --locked --all-features --doc