Skip to content

Commit 5dc9b61

Browse files
authored
Disable wheel tests for x86_64-apple-darwin (#1853)
1 parent 3cd534f commit 5dc9b61

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,11 @@ jobs:
245245

246246
- id: set-matrix
247247
shell: bash
248+
# TODO(jleibs): figure out why tests are failing to complete on `x86_64-apple-darwin`
249+
# See: https://github.com/rerun-io/rerun/pull/1853
248250
run: |
249251
matrix=()
250-
matrix+=('{"platform": "macos", "target": "x86_64-apple-darwin", "run_tests": true, "runs_on": "macos-latest" },')
252+
matrix+=('{"platform": "macos", "target": "x86_64-apple-darwin", "run_tests": false, "runs_on": "macos-latest" },')
251253
matrix+=('{"platform": "macos", "target": "aarch64-apple-darwin", "run_tests": false, "runs_on": "macos-latest" },') # NOTE: we can't run tests on arm since our macos runner is x86_64
252254
matrix+=('{"platform": "windows", "target": "x86_64-pc-windows-msvc", "run_tests": true, "runs_on": "windows-latest-8-cores"},')
253255

0 commit comments

Comments
 (0)