Remove trailing commas from environment declarations
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user