Skip to content

Commit e30a196

Browse files
committed
cibuildwheel: adjust pytest parallel execution
cicircle: upgrade the machine size Stop building for musllinux_1_1 > musl libc 1.1 is EOL and Alpine Linux 3.12 also (support ended 2 years ago, May 1st, 2022). pypa/manylinux#1629
1 parent e3f6cf7 commit e30a196

File tree

3 files changed

+2
-11
lines changed

3 files changed

+2
-11
lines changed

.circleci/config.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
machine:
1818
image: ubuntu-2204:current
19-
resource_class: arm.medium # two vCPUs
19+
resource_class: arm.large # 4 vCPUs
2020

2121
environment:
2222
CIBW_ARCHS: "aarch64"
@@ -88,13 +88,6 @@ workflows:
8888
only: /.*/
8989
build: "*manylinux*"
9090
image: quay.io/pypa/manylinux_2_28_aarch64
91-
- arm-wheels:
92-
name: arm-wheels-musllinux_1_1
93-
filters:
94-
tags:
95-
only: /.*/
96-
build: "*musllinux*"
97-
image: quay.io/pypa/musllinux_1_1_aarch64
9891
- arm-wheels:
9992
name: arm-wheels-musllinux_1_2
10093
filters:

.github/workflows/wheels.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
include:
2424
- image: manylinux_2_28_x86_64
2525
build: "*manylinux*"
26-
- image: musllinux_1_1_x86_64
27-
build: "*musllinux*"
2826
- image: musllinux_1_2_x86_64
2927
build: "*musllinux*"
3028

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta"
1818
write_to = "cwltool/_version.py"
1919

2020
[tool.cibuildwheel]
21-
test-command = "python -m pytest -n 2 --junitxml={project}/test-results/junit_$(python -V | awk '{print $2}')_${AUDITWHEEL_PLAT}.xml -k 'not (test_bioconda or test_env_filtering or test_udocker)' --pyargs cwltool"
21+
test-command = "python -m pytest --ignore cwltool/schemas -n logical --dist worksteal --junitxml={project}/test-results/junit_$(python -V | awk '{print $2}')_${AUDITWHEEL_PLAT}.xml -k 'not (test_bioconda or test_env_filtering or test_udocker)' --pyargs cwltool"
2222
test-requires = "-r test-requirements.txt"
2323
test-extras = "deps"
2424
skip = "pp*"

0 commit comments

Comments
 (0)