Skip to content

Commit 3f7a4d7

Browse files
committed
Skip non-linux builds for 06_docker_images test, now that we have custom checks
1 parent 95d2086 commit 3f7a4d7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/06_docker_images/check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44

55
build_identifiers = subprocess.check_output([sys.executable, '-m', 'cibuildwheel', '--print-build-identifiers'], universal_newlines=True).strip().split('\n')
6-
expected_identifiers = build_identifiers
6+
expected_identifiers = [identifier for identifier in build_identifiers if 'macos' not in identifier and 'win' not in identifier]
77
built_wheels = glob.glob('wheelhouse/*.whl')
88

99
assert len(built_wheels) == len(expected_identifiers)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"CIBW_MANYLINUX1_X86_64_IMAGE": "dockcross/manylinux-x64",
33
"CIBW_MANYLINUX1_I686_IMAGE": "dockcross/manylinux-x86",
4-
"CIBW_SKIP": "cp37-manylinux*"
4+
"CIBW_SKIP": "*macos* *win*"
55
}

0 commit comments

Comments
 (0)