Changing variable name of BuildSelector instance, updating Python version in test 04_build_skip, and adding unit tests for BuildSelector

This commit is contained in:
Yannick Jadoul
2018-09-23 13:08:26 +02:00
parent c108807e16
commit 7362075b61
7 changed files with 72 additions and 11 deletions
+2 -2
View File
@@ -99,7 +99,7 @@ def main():
traceback.print_exc(None, sys.stderr)
exit(2)
selection = BuildSelector(build_config, skip_config)
build_selector = BuildSelector(build_config, skip_config)
# Add CIBUILDWHEEL environment variable
# This needs to be passed on to the docker container in linux.py
@@ -134,7 +134,7 @@ def main():
test_requires=test_requires,
before_build=before_build,
build_verbosity=build_verbosity,
selection=selection,
build_selector=build_selector,
environment=environment,
)