Remove trailing commas from environment declarations

This commit is contained in:
Joe Rickerby
2019-04-22 18:33:03 +01:00
parent 21fb27faf7
commit f410fbdd03
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ def test():
env["CIBW_TEST_REQUIRES"] = "nose",
# the 'false ||' bit is to ensure this command runs in a shell on
# mac/linux.
env["CIBW_TEST_COMMAND"] = "false || nosetests {project}/test",
env["CIBW_TEST_COMMAND"] = "false || nosetests {project}/test"
env["CIBW_TEST_COMMAND_WINDOWS"] = "nosetests {project}/test"
# build & test the wheels
+1 -1
View File
@@ -8,7 +8,7 @@ import utils
def test():
# set up the environment
env = os.environ.copy()
env["CIBW_BUILD"] = "cp3?-*",
env["CIBW_BUILD"] = "cp3?-*"
env["CIBW_SKIP"] = "cp34-*"
# build the wheels
+1 -1
View File
@@ -10,7 +10,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
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',
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'
env['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"'
# build the wheels