Skip to content

Commit

Permalink
Don't run e2e tests on release
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Mar 11, 2023
1 parent df8e5eb commit 4ee0ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
cd docs && make html
- name: Run e2e tests
if: steps.install.outcome == 'success' && (success() || failure())
if: github.event_name != 'release' && steps.install.outcome == 'success' && (success() || failure())
run: |
make e2e
Expand Down

0 comments on commit 4ee0ee9

Please sign in to comment.