From c42cca1c8602d516046147f006541c7afc8c6a30 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 9 Nov 2019 18:07:46 +0000 Subject: [PATCH] Add test that failing tests fail on manylinux1 specifically --- test/02_test/cibuildwheel_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/02_test/cibuildwheel_test.py b/test/02_test/cibuildwheel_test.py index 99324e87..4be4c740 100644 --- a/test/02_test/cibuildwheel_test.py +++ b/test/02_test/cibuildwheel_test.py @@ -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'))