1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env python """Script to run tests against local copy of all components.""" from os import path import subprocess subprocess.check_call( ( f"{path.join('.', 'cmd_pkgs_in_dep_order.py')}" + f" {path.join('.', 'setup.py')} test" ).split() )