From f57bbe4eeda91a828db103e8fab5e53b0cd46ad0 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 6 Nov 2023 17:13:19 +0100 Subject: [PATCH] github(workflows): add stages/test to the CI run too Include the new `stages/test` test category to the CI runs as well. Note that because `stages/__init__.py` and `stages/test/__init__.py` are missing it is not possible to use the existing style of just doing `stages.test`. Adding `stages/__init__.py` feels wrong and the desire is to have the stages tests close to the stages so this seems the least invasive way. --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9987f6f8d3..5950fb288d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,7 @@ jobs: - "test.run.test_noop" - "test.run.test_sources" - "test.run.test_stages" + - "-k stages/test" environment: - "py36" - "py39"