Skip to content

Commit 7bbb128

Browse files
committed
Do not run tests on linux arm64, as it takes too long
1 parent 4c48ad3 commit 7bbb128

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/cibuildwheels.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ env:
1515
CIBW_BUILD_VERBOSITY: 1
1616
CIBW_TEST_REQUIRES: pytest psutil
1717
CIBW_TEST_COMMAND: python -m pytest -m "not heavy" {project}/tests
18-
CIBW_TEST_SKIP: "*macosx*arm64*"
18+
# Running the tests on the next platforms takes too much time.
19+
CIBW_TEST_SKIP: "*macosx*x86_64* *linux*aarch64*"
1920
# Building for musllinux and aarch64 takes way too much time.
2021
# NumPy is adding musllinux for just x86_64 too, so this is not too bad.
2122
CIBW_SKIP: "*musllinux*aarch64*"

0 commit comments

Comments
 (0)