From def8f9a2e3493ac88fcf5f4af131af9f64c00097 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Fri, 8 Nov 2019 10:53:06 +0000 Subject: [PATCH] Remove errexit flag for test command subshell --- cibuildwheel/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index 1ac2e67e..d3c13c09 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -114,7 +114,7 @@ def build(project_dir, output_dir, test_command, test_requires, test_extras, bef # Run the tests from a different directory pushd $HOME - sh -o errexit -c {test_command} + sh -c {test_command} popd ) # exit if tests failed