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
Copy file name to clipboardExpand all lines: test/functional/test_runner.py
+34-2Lines changed: 34 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -201,6 +201,7 @@ def main():
201
201
parser.add_argument('--keepcache', '-k', action='store_true', help='the default behavior is to flush the cache directory on startup. --keepcache retains the cache from the previous testrun.')
202
202
parser.add_argument('--quiet', '-q', action='store_true', help='only print results summary and failure logs')
203
203
parser.add_argument('--tmpdirprefix', '-t', default=tempfile.gettempdir(), help="Root directory for datadirs")
204
+
parser.add_argument('--failfast', action='store_true', help='stop execution after the first test failure')
204
205
args, unknown_args=parser.parse_known_args()
205
206
206
207
# args to be passed on always start with two dashes; tests are the remaining unknown args
0 commit comments