Skip to content

Commit

Permalink
Fixed if statement in github worflow
Browse files Browse the repository at this point in the history
[run-slow-tests]
  • Loading branch information
ckunki committed May 22, 2024
1 parent 549f201 commit 24a82d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: ./.github/actions/pytest-plugins-environment

- name: Evaluate Whether to Run Slow Tests
if: "! contains(github.event.head_commit.message, '[run-slow-tests]')"
if: ${{ ! contains(github.event.head_commit.message, '[run-slow-tests]') }}
run: echo 'RUN_SLOW_TESTS=-m "not slow"' >> $GITHUB_ENV

- name: Run Tests of All Plugins
Expand Down

0 comments on commit 24a82d9

Please sign in to comment.