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
@@ -5,8 +5,8 @@ if sys.argv[-1] != '--name':
# explode if run on Python 2.7 or Python 3.3 (these should be skipped)
if sys.version_info[0:2] == (2, 7):
raise Exception('Python 2.7 should not be built')
if sys.version_info[0:2] == (3, 3):
raise Exception('Python 3.3 should be skipped')
if sys.version_info[0:2] == (3, 4):
raise Exception('Python 3.4 should be skipped')
setup(
name="spam",