Skip to content

Commit

Permalink
ci: run only the applicable test cases
Browse files Browse the repository at this point in the history
Run only those test cases for the current job so we have no skips in the
output.
  • Loading branch information
supakeen committed Jul 31, 2023
1 parent 94ea97c commit e07e7cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- cron: '0 7 1 * *'

jobs:
test:
integration-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Run unit tests
run: |
pytest --cov=pinnwand
pytest --cov=pinnwand test/integration
e2e-test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -63,4 +63,4 @@ jobs:

- name: Run e2e tests
run: |
pytest --e2e --log-cli-level=INFO
pytest --e2e --log-cli-level=INFO test/e2e

0 comments on commit e07e7cc

Please sign in to comment.