Skip to content

Commit 235567c

Browse files
committed
Updating dockcross images in docker images test, including the new dockcross/manylinux2010-x64
1 parent ecd9a02 commit 235567c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

test/06_docker_images/cibuildwheel_test.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ def test():
88
pytest.skip('the docker test is only relevant to the linux build')
99

1010
utils.cibuildwheel_run(project_dir, add_env={
11-
'CIBW_MANYLINUX1_X86_64_IMAGE': 'dockcross/manylinux-x64',
12-
'CIBW_MANYLINUX1_I686_IMAGE': 'dockcross/manylinux-x86',
13-
'CIBW_SKIP': '*-manylinux2010_*', # No dockcross image for manylinux2010 (yet)
11+
'CIBW_MANYLINUX1_X86_64_IMAGE': 'dockcross/manylinux1-x64',
12+
'CIBW_MANYLINUX1_I686_IMAGE': 'dockcross/manylinux1-x86',
13+
'CIBW_MANYLINUX2010_X86_64_IMAGE': 'dockcross/manylinux2010-x64',
1414
})
1515

1616
# also check that we got the right wheels built
17-
expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0')
18-
if '-manylinux2010' not in w]
17+
expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0')]
1918
actual_wheels = os.listdir('wheelhouse')
2019
assert set(actual_wheels) == set(expected_wheels)

0 commit comments

Comments
 (0)