You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test.add_argument("-f", "--from", default=test_cases[0].get_uuid(), type=str, help="First test UUID to run.")
82
82
test.add_argument("-t", "--to", default=test_cases[-1].get_uuid(), type=str, help="Last test UUID to run.")
83
83
test.add_argument("-o", "--only", nargs="+", type=str, default=[], metavar="L", help="Only run tests with specified properties.")
84
-
test.add_argument("-r", "--relentless", action="store_true", default=False, help="Run all tests, even if multiple fail.")
85
84
test.add_argument("-a", "--test-all", action="store_true", default=False, help="Run the Post Process Tests too.")
86
85
test.add_argument("-%", "--percent", type=int, default=100, help="Percentage of tests to run.")
87
-
test.add_argument("-m", "--max-attempts", type=int, default=3, help="Maximum number of attempts to run a test.")
86
+
test.add_argument("-m", "--max-attempts", type=int, default=1, help="Maximum number of attempts to run a test.")
88
87
test.add_argument( "--no-build", action="store_true", default=False, help="(Testing) Do not rebuild MFC.")
89
88
test.add_argument("--case-optimization", action="store_true", default=False, help="(GPU Optimization) Compile MFC targets with some case parameters hard-coded.")
90
-
91
89
test_meg=test.add_mutually_exclusive_group()
92
90
test_meg.add_argument("--generate", action="store_true", default=False, help="(Test Generation) Generate golden files.")
93
91
test_meg.add_argument("--add-new-variables", action="store_true", default=False, help="(Test Generation) If new variables are found in D/ when running tests, add them to the golden files.")
0 commit comments