Skip to content

Commit

Permalink
experiment 7
Browse files Browse the repository at this point in the history
[run-slow-tests]
  • Loading branch information
ckunki committed May 22, 2024
1 parent e3519aa commit 18cdc24
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: SCM Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Examine Commit Message in ci-pr
run: |
if (git log -1 --pretty=format:"%s" | grep "\[run-slow-tests\]"); then
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: SCM Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Examine Commit Message
run: |
if (git log -1 --pretty=format:"%s" | grep "\[run-slow-tests\]"); then
Expand All @@ -25,11 +30,6 @@ jobs:
- name: Verify setting of env var
run: echo ${{ env.RUN_SLOW_TESTS }}

- name: SCM Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Development Environment
uses: ./.github/actions/pytest-plugins-environment

Expand Down

0 comments on commit 18cdc24

Please sign in to comment.