import subprocess # nosec def main(): subprocess.run(["python", "-u", "-m", "unittest", "discover"]) # nosec if __name__ == "__main__": main()