Skipping PyPy for 06_docker_images test, and manylinux1 and manylinux2014 runs of 08_manylinuxXXXX_only test

This commit is contained in:
Yannick Jadoul
2020-02-15 23:24:51 +01:00
parent 100fc14411
commit ef80beb433
2 changed files with 12 additions and 3 deletions
+3 -1
View File
@@ -14,8 +14,10 @@ def test():
actual_wheels = utils.cibuildwheel_run(project_dir, add_env={
'CIBW_MANYLINUX_X86_64_IMAGE': 'dockcross/manylinux2010-x64',
'CIBW_MANYLINUX_I686_IMAGE': 'dockcross/manylinux2010-x86',
'CIBW_SKIP': 'pp*-*',
})
# also check that we got the right wheels built
expected_wheels = utils.expected_wheels('spam', '0.1.0')
expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0')
if 'pypy' not in w]
assert set(actual_wheels) == set(expected_wheels)