Skip to content

Commit 7ec6c56

Browse files
Backport PR pandas-dev#45437: CI: Don't split slow vs non slow jobs for GHA posix (pandas-dev#45620)
Co-authored-by: Matthew Roeschke <[email protected]>
1 parent 7788285 commit 7ec6c56

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

.github/workflows/datamanger.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,9 @@ jobs:
2626
AWS_SECRET_ACCESS_KEY: foobar_secret
2727
ports:
2828
- 5000:5000
29-
strategy:
30-
matrix:
31-
pattern: ["not slow and not network and not clipboard", "slow"]
3229
concurrency:
3330
# https://github.community/t/concurrecy-not-work-for-push/183068/7
34-
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-data_manager-${{ matrix.pattern }}
31+
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-data_manager
3532
cancel-in-progress: true
3633

3734
steps:
@@ -46,7 +43,7 @@ jobs:
4643
- name: Run tests
4744
env:
4845
PANDAS_DATA_MANAGER: array
49-
PATTERN: ${{ matrix.pattern }}
46+
PATTERN: "not network and not clipboard"
5047
PYTEST_WORKERS: "auto"
5148
PYTEST_TARGET: pandas
5249
run: |

.github/workflows/posix.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,14 @@ jobs:
2626
matrix:
2727
settings: [
2828
[actions-38-downstream_compat.yaml, "not slow and not network and not clipboard", "", "", "", "", ""],
29-
[actions-38-minimum_versions.yaml, "slow", "", "", "", "", ""],
30-
[actions-38-minimum_versions.yaml, "not slow and not network and not clipboard", "", "", "", "", ""],
29+
[actions-38-minimum_versions.yaml, "not clipboard", "", "", "", "", ""],
3130
[actions-38.yaml, "not slow and not network", "language-pack-it xsel", "it_IT.utf8", "it_IT.utf8", "", ""],
3231
[actions-38.yaml, "not slow and not network", "language-pack-zh-hans xsel", "zh_CN.utf8", "zh_CN.utf8", "", ""],
33-
[actions-38.yaml, "not slow and not clipboard", "", "", "", "", ""],
34-
[actions-38.yaml, "slow", "", "", "", "", ""],
32+
[actions-38.yaml, "not clipboard", "", "", "", "", ""],
3533
[actions-pypy-38.yaml, "not slow and not clipboard", "", "", "", "", "--max-worker-restart 0"],
36-
[actions-39.yaml, "slow", "", "", "", "", ""],
37-
[actions-39.yaml, "not slow and not clipboard", "", "", "", "", ""],
34+
[actions-39.yaml, "not clipboard", "", "", "", "", ""],
3835
[actions-310-numpydev.yaml, "not slow and not network", "xsel", "", "", "deprecate", "-W error"],
39-
[actions-310.yaml, "not slow and not clipboard", "", "", "", "", ""],
40-
[actions-310.yaml, "slow", "", "", "", "", ""],
36+
[actions-310.yaml, "not clipboard", "", "", "", "", ""],
4137
]
4238
fail-fast: false
4339
env:

0 commit comments

Comments
 (0)