Fix up test runner scripts
This commit is contained in:
+1
-16
@@ -3,28 +3,13 @@
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
from glob import glob
|
||||
|
||||
if __name__ == '__main__':
|
||||
# move cwd to the project root
|
||||
os.chdir(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||||
|
||||
# run the unit tests
|
||||
|
||||
subprocess.check_call([sys.executable, '-m', 'pytest', 'unit_test'])
|
||||
|
||||
# run the integration tests
|
||||
|
||||
test_projects = sorted(glob('test/??_*'))
|
||||
|
||||
if len(test_projects) == 0:
|
||||
print('No test projects found. Aborting.', file=sys.stderr)
|
||||
exit(2)
|
||||
|
||||
print('Testing projects:', test_projects)
|
||||
|
||||
run_test_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'run_test.py')
|
||||
for project_path in test_projects:
|
||||
subprocess.check_call([sys.executable, run_test_path, project_path])
|
||||
|
||||
print('%d projects built successfully.' % len(test_projects))
|
||||
subprocess.check_call([sys.executable, '-m', 'pytest', 'test'])
|
||||
|
||||
Reference in New Issue
Block a user