Skip to content

Commit 6659da4

Browse files
authored
CI: Don't split slow vs non slow jobs for GHA posix (#45437)
1 parent 42a26ac commit 6659da4

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
@@ -28,12 +28,9 @@ jobs:
2828
AWS_SECRET_ACCESS_KEY: foobar_secret
2929
ports:
3030
- 5000:5000
31-
strategy:
32-
matrix:
33-
pattern: ["not slow and not network and not clipboard", "slow"]
3431
concurrency:
3532
# https://github.community/t/concurrecy-not-work-for-push/183068/7
36-
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-data_manager-${{ matrix.pattern }}
33+
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-data_manager
3734
cancel-in-progress: true
3835

3936
steps:
@@ -48,7 +45,7 @@ jobs:
4845
- name: Run tests
4946
env:
5047
PANDAS_DATA_MANAGER: array
51-
PATTERN: ${{ matrix.pattern }}
48+
PATTERN: "not network and not clipboard"
5249
PYTEST_WORKERS: "auto"
5350
PYTEST_TARGET: pandas
5451
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)