Merge pull request #200 from joerick/test-bash-errexit-again

Add check that failing tests fail on manylinux1 specifically
This commit is contained in:
Joe Rickerby
2019-11-10 15:07:45 +00:00
committed by GitHub
+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'))