Skip to content

Commit 59e9f9d

Browse files
committed
aarch64/ci: Skip tests for aarch64 wheels
1 parent cd88865 commit 59e9f9d

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

Diff for: scikit-ci.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,23 @@ test:
107107
wheels = glob.glob("dist/*.whl")
108108
for wheel in wheels:
109109
convert_to_generic_platform_wheel(wheel, remove_original=True)
110-
- python setup.py test
110+
111+
appveyor:
112+
commands:
113+
- python setup.py test
114+
115+
circle:
116+
commands:
117+
- |
118+
if [[ ${AUDITWHEEL_ARCH} == "aarch64" ]]; then
119+
exit
120+
fi
121+
python setup.py test
122+
123+
travis:
124+
osx:
125+
commands:
126+
- python setup.py test
111127

112128
#after_test:
113129
# commands:

0 commit comments

Comments
 (0)