Skip to content

Commit 3f17033

Browse files
committed
Don't run cookiecutter tests in arm64
We don't really create project in arm64 yet, so it's not strictly necessary to have it tested, and test in arm64 take too long as they need to run in a emulator. If at some point arm64 is popular enough so we want to make sure new projects can be started in it, there will probably be more accessible native arm64 GitHub Actions runners. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent bc825d5 commit 3f17033

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,10 @@ jobs:
177177
--net=host \
178178
--platform linux/${{ matrix.arch }} \
179179
localhost/nox-cross-arch:latest \
180-
bash -c "pip install -e .[dev-noxfile]; nox --install-only -e ${{ matrix.nox-session }}; pip freeze; nox -e ${{ matrix.nox-session }}"
180+
bash -c "pip install -e .[dev-noxfile]; \
181+
nox --install-only -e ${{ matrix.nox-session }}; \
182+
pip freeze; \
183+
nox -e ${{ matrix.nox-session }} -- -m 'not cookiecutter'"
181184
timeout-minutes: 30
182185

183186
# This ensures that the runner has access to the pip cache.

0 commit comments

Comments
 (0)