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
help="log events at this level and higher to the console. Can be set to DEBUG, INFO, WARNING, ERROR or CRITICAL. Passing --loglevel DEBUG will output all logs to console. Note that logs at all levels are always written to the test_framework.log file in the temporary test directory.")
Copy file name to clipboardExpand all lines: test/functional/test_runner.py
+22-7Lines changed: 22 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@
16
16
17
17
importargparse
18
18
importconfigparser
19
+
importdatetime
19
20
importos
20
21
importtime
21
22
importshutil
@@ -170,6 +171,7 @@ def main():
170
171
parser.add_argument('--jobs', '-j', type=int, default=4, help='how many test scripts to run in parallel. Default=4.')
171
172
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.')
172
173
parser.add_argument('--quiet', '-q', action='store_true', help='only print results summary and failure logs')
174
+
parser.add_argument('--tmpdirprefix', '-t', default=tempfile.gettempdir(), help="Root directory for datadirs")
173
175
args, unknown_args=parser.parse_known_args()
174
176
175
177
# Create a set to store arguments and create the passon string
0 commit comments