From 45fcebf9d8f1ba7762830f80947cc01d9d0a4369 Mon Sep 17 00:00:00 2001 From: Thomas Robitaille Date: Sat, 7 Sep 2019 17:24:03 +0100 Subject: [PATCH] Fix issue on linux --- cibuildwheel/linux.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index b5954330..473838b0 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -107,6 +107,7 @@ def build(project_dir, output_dir, test_command, test_requires, test_extras, bef '''.format( pybin_paths=' '.join(c.path+'/bin' for c in platform_configs), test_requires=' '.join(test_requires), + test_extras=test_extras, test_command=shlex_quote( prepare_command(test_command, project='/project') if test_command else '' ),