From 3f7a4d753f7fa571830189f00886fb054d50dee5 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Sat, 20 Apr 2019 20:59:27 +0200 Subject: [PATCH] Skip non-linux builds for 06_docker_images test, now that we have custom checks --- test/06_docker_images/check.py | 2 +- test/06_docker_images/environment.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/06_docker_images/check.py b/test/06_docker_images/check.py index bec98563..d2061288 100644 --- a/test/06_docker_images/check.py +++ b/test/06_docker_images/check.py @@ -3,7 +3,7 @@ import subprocess import sys build_identifiers = subprocess.check_output([sys.executable, '-m', 'cibuildwheel', '--print-build-identifiers'], universal_newlines=True).strip().split('\n') -expected_identifiers = build_identifiers +expected_identifiers = [identifier for identifier in build_identifiers if 'macos' not in identifier and 'win' not in identifier] built_wheels = glob.glob('wheelhouse/*.whl') assert len(built_wheels) == len(expected_identifiers) diff --git a/test/06_docker_images/environment.json b/test/06_docker_images/environment.json index bd3ceda8..e5e73cc8 100644 --- a/test/06_docker_images/environment.json +++ b/test/06_docker_images/environment.json @@ -1,5 +1,5 @@ { "CIBW_MANYLINUX1_X86_64_IMAGE": "dockcross/manylinux-x64", "CIBW_MANYLINUX1_I686_IMAGE": "dockcross/manylinux-x86", - "CIBW_SKIP": "cp37-manylinux*" + "CIBW_SKIP": "*macos* *win*" }