From f7d93cc9e471b0be0d0110aaff6e9b6275bb0f68 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 23 Apr 2019 22:23:54 +0100 Subject: [PATCH] Fix function name --- test/02_test/cibuildwheel_test.py | 2 +- test/03_before_build/cibuildwheel_test.py | 2 +- test/04_build_skip/cibuildwheel_test.py | 2 +- test/05_environment/cibuildwheel_test.py | 2 +- test/06_docker_images/cibuildwheel_test.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/02_test/cibuildwheel_test.py b/test/02_test/cibuildwheel_test.py index 005ee68b..aa1de0fd 100644 --- a/test/02_test/cibuildwheel_test.py +++ b/test/02_test/cibuildwheel_test.py @@ -5,7 +5,7 @@ def test(): project_dir = os.path.dirname(__file__) # build and test the wheels - utils.run_cibuildwheel(project_dir, add_env={ + utils.cibuildwheel_run(project_dir, add_env={ 'CIBW_TEST_REQUIRES': 'nose', # the 'false ||' bit is to ensure this command runs in a shell on # mac/linux. diff --git a/test/03_before_build/cibuildwheel_test.py b/test/03_before_build/cibuildwheel_test.py index 6bb0872f..a9d7614d 100644 --- a/test/03_before_build/cibuildwheel_test.py +++ b/test/03_before_build/cibuildwheel_test.py @@ -5,7 +5,7 @@ def test(): project_dir = os.path.dirname(__file__) # build the wheels - utils.run_cibuildwheel(project_dir, add_env={ + utils.cibuildwheel_run(project_dir, add_env={ # write python version information to a temporary file, this is # checked in setup.py 'CIBW_BEFORE_BUILD': '''python -c "import sys; open('/tmp/pythonversion.txt', 'w').write(sys.version)" && python -c "import sys; open('/tmp/pythonexecutable.txt', 'w').write(sys.executable)"''', diff --git a/test/04_build_skip/cibuildwheel_test.py b/test/04_build_skip/cibuildwheel_test.py index 06c7e41e..98333fd2 100644 --- a/test/04_build_skip/cibuildwheel_test.py +++ b/test/04_build_skip/cibuildwheel_test.py @@ -5,7 +5,7 @@ def test(): project_dir = os.path.dirname(__file__) # build the wheels - utils.run_cibuildwheel(project_dir, add_env={ + utils.cibuildwheel_run(project_dir, add_env={ 'CIBW_BUILD': 'cp3?-*', 'CIBW_SKIP': 'cp34-*', }) diff --git a/test/05_environment/cibuildwheel_test.py b/test/05_environment/cibuildwheel_test.py index c5b5aad5..3b0a0678 100644 --- a/test/05_environment/cibuildwheel_test.py +++ b/test/05_environment/cibuildwheel_test.py @@ -7,7 +7,7 @@ def test(): # write some information into the CIBW_ENVIRONMENT, for expansion and # insertion into the environment by cibuildwheel. This is checked # in setup.py - utils.run_cibuildwheel(project_dir, add_env={ + utils.cibuildwheel_run(project_dir, add_env={ 'CIBW_ENVIRONMENT': '''CIBW_TEST_VAR="a b c" CIBW_TEST_VAR_2=1 CIBW_TEST_VAR_3="$(echo 'test string 3')" PATH=$PATH:/opt/cibw_test_path''', 'CIBW_ENVIRONMENT_WINDOWS': '''CIBW_TEST_VAR="a b c" CIBW_TEST_VAR_2=1 CIBW_TEST_VAR_3="$(echo 'test string 3')" PATH="$PATH;/opt/cibw_test_path"''', }) diff --git a/test/06_docker_images/cibuildwheel_test.py b/test/06_docker_images/cibuildwheel_test.py index 0d425b03..a5448485 100644 --- a/test/06_docker_images/cibuildwheel_test.py +++ b/test/06_docker_images/cibuildwheel_test.py @@ -7,7 +7,7 @@ def test(): if utils.platform != 'linux': pytest.skip('the docker test is only relevant to the linux build') - utils.run_cibuildwheel(project_dir, add_env={ + utils.cibuildwheel_run(project_dir, add_env={ 'CIBW_MANYLINUX1_X86_64_IMAGE': 'dockcross/manylinux-x64', 'CIBW_MANYLINUX1_I686_IMAGE': 'dockcross/manylinux-x86', })