Skip to content

Commit

Permalink
Skipping PyPy for 06_docker_images test
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickJadoul committed Oct 30, 2019
1 parent 1949e0b commit 2964825
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/06_docker_images/cibuildwheel_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ def test():
utils.cibuildwheel_run(project_dir, add_env={
'CIBW_MANYLINUX_X86_64_IMAGE': 'dockcross/manylinux2010-x64',
'CIBW_MANYLINUX_I686_IMAGE': 'dockcross/manylinux1-x86',
'CIBW_SKIP': 'pp*-*',
'CIBW_BEFORE_BUILD': '/opt/python/cp36-cp36m/bin/pip install -U auditwheel', # Currently necessary on dockcross images to get auditwheel 2.1 supporting AUDITWHEEL_PLAT
'CIBW_ENVIRONMENT': 'AUDITWHEEL_PLAT=`if [ $(uname -i) == "x86_64" ]; then echo "manylinux2010_x86_64"; else echo "manylinux1_i686"; fi`',
})

# also check that we got the right wheels built
expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0')
if '-manylinux2010_i686' not in w]
if '-manylinux2010_i686' not in w and 'pypy' not in w]
actual_wheels = os.listdir('wheelhouse')
assert set(actual_wheels) == set(expected_wheels)

0 comments on commit 2964825

Please sign in to comment.