From e07e7ccf9d5312d2009c3cc3dcafa133decc3859 Mon Sep 17 00:00:00 2001 From: Simon de Vlieger Date: Mon, 31 Jul 2023 19:02:32 +0200 Subject: [PATCH] ci: run only the applicable test cases Run only those test cases for the current job so we have no skips in the output. --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7aca01e..5e4b60a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,7 +7,7 @@ on: - cron: '0 7 1 * *' jobs: - test: + integration-test: runs-on: ubuntu-latest strategy: fail-fast: false @@ -31,7 +31,7 @@ jobs: - name: Run unit tests run: | - pytest --cov=pinnwand + pytest --cov=pinnwand test/integration e2e-test: runs-on: ubuntu-latest @@ -63,4 +63,4 @@ jobs: - name: Run e2e tests run: | - pytest --e2e --log-cli-level=INFO + pytest --e2e --log-cli-level=INFO test/e2e