test_run.py 153 B

123456789
  1. import subprocess
  2. def test_run_cli_help():
  3. args = [
  4. "python",
  5. "run.py",
  6. "--help",
  7. ]
  8. subprocess.run(args, check=True)