Skip to content

Commit

Permalink
Merge pull request #2323 from byuccl/quick_test_jobs
Browse files Browse the repository at this point in the history
Allow -j argument to quick test
  • Loading branch information
jgoeders committed May 31, 2023
2 parents 4fa4476 + 30f0bf7 commit 6eb7fe3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion run_quick_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

""" Run the vtr_reg_basic regression test """

import argparse
import subprocess

subprocess.run(["./run_reg_test.py", "vtr_reg_basic"], check=True)
parser = argparse.ArgumentParser()
parser.add_argument("-j", "--jobs", type=int, default=1, help="Number of processes to use")
args = parser.parse_args()

subprocess.run(["./run_reg_test.py", "vtr_reg_basic", "-j", str(args.jobs)], check=True)

0 comments on commit 6eb7fe3

Please sign in to comment.