Skip to content

Commit 9702a2a

Browse files
Update quick-tests.yml & quick-tests-integration.yml
1 parent 28b3af2 commit 9702a2a

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/quick-tests-integration.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
# Limited testing using Python 3.9 only, INCLUDING integration tests
2-
# Triggered by a regular (non-draft) pull request created
3-
# Triggered by a regular (non-draft) pull request updated by a new commit
4-
# Triggered by a draft pull request converted into a regular (non-draft) one
1+
# Limited testing using Python 3.9 only INCLUDING integration tests
2+
# Triggered by a regular (non-draft) pull request created, except to main branch
3+
# Triggered by a regular (non-draft) pull request updated by a new commit, except to main branch
4+
# Triggered by a draft pull request to develop branch converted into a regular (non-draft) one
55

66
name: quick-tests-integration
77

88
on:
99
pull_request:
10+
branches: [develop]
1011
types: [opened, synchronize, ready_for_review]
1112

1213
jobs:

.github/workflows/quick-tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Limited testing using Python 3.9 only, EXCLUDING integration tests
2-
# Triggered by a push (new branch, or new commit to any branch), EXCEPT
1+
# Limited testing using Python 3.9 only EXCLUDING integration tests
2+
# Triggered by any push (new branch, or new commit to any branch), EXCEPT
33
# if that branch is part of a regular (non-draft) pull request
44

55
name: quick-tests
@@ -10,7 +10,10 @@ on:
1010
jobs:
1111

1212
quick-tests:
13-
if: ${{ !github.event.pull_request || github.event.pull_request.draft == true }}
13+
if: ${{ !(
14+
github.event.pull_request &&
15+
github.event.pull_request.draft == false
16+
) }}
1417
runs-on: ubuntu-latest
1518
steps:
1619
- name: Checkout repository

0 commit comments

Comments
 (0)