Adding check.py to tests, rather than a simple generic assert on number of wheels

This commit is contained in:
Yannick Jadoul
2019-04-20 20:49:56 +02:00
parent 52e8f41b5c
commit 95d2086ced
9 changed files with 65 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ def single_run(test_project):
print('%s built successfully. %i wheels built.' % (test_project, len(wheels)))
# check some wheels were actually built
assert len(wheels) >= 3
subprocess.check_call([sys.executable, os.path.join(test_project, 'check.py')])
# clean up
shutil.rmtree('wheelhouse')