Add test that failing tests fail on manylinux1 specifically

This commit is contained in:
Joe Rickerby
2019-11-09 18:07:46 +00:00
parent b51434b5a8
commit c42cca1c86
+4
View File
@@ -45,6 +45,10 @@ def test_failing_test():
with pytest.raises(subprocess.CalledProcessError):
utils.cibuildwheel_run(project_dir, add_env={
'CIBW_TEST_COMMAND': 'false',
# manylinux1 has a version of bash that's been shown to have
# problems with this, so let's check that.
'CIBW_MANYLINUX_I686_IMAGE': 'manylinux1',
'CIBW_MANYLINUX_X86_64_IMAGE': 'manylinux1',
})
assert len(os.listdir('wheelhouse'))