File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ jobs:
115
115
fail-fast : false
116
116
matrix :
117
117
include :
118
- - arch : aarch64
119
118
- arch : s390x
120
119
- arch : ppc64le
121
120
- arch : armv7
@@ -171,3 +170,24 @@ jobs:
171
170
ASTROPY_USE_SYSTEM_ALL=1 pip3 install -v --no-build-isolation -e .[test]
172
171
pip3 list
173
172
python3 -m pytest -m "not hypothesis"
173
+
174
+ test_arm64 :
175
+
176
+ # Native arm64 testing - we keep this in the weekly cron as we need to pay for it so we should
177
+ # minimize how many jobs we do.
178
+
179
+ runs-on : linux-arm64
180
+ name : Python 3.12 (arm64)
181
+
182
+ steps :
183
+ - uses : actions/checkout@v4
184
+ with :
185
+ fetch-depth : 0
186
+ - uses : actions/setup-python@v5
187
+ with :
188
+ python-version : ' 3.12'
189
+ - name : Set up dependencies
190
+ run : pip install tox
191
+
192
+ - name : Run tests
193
+ run : tox -e py312-test -- -n=2
You can’t perform that action at this time.
0 commit comments