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
self.rpc_timeout=int(self.rpc_timeout*self.options.timeout_factor) # optionally, increase timeout by a factor
126
124
127
125
defmain(self):
@@ -193,14 +191,17 @@ def parse_args(self):
193
191
help="run nodes under the valgrind memory error detector: expect at least a ~10x slowdown. valgrind 3.14 or later required. Forces --nosandbox.")
194
192
parser.add_argument("--randomseed", type=int,
195
193
help="set a random seed for deterministically reproducing a previous test run")
196
-
parser.add_argument('--timeout-factor', dest="timeout_factor", type=float, default=1.0, help='adjust test timeouts by a factor. Setting it to 0 disables all timeouts')
194
+
parser.add_argument("--timeout-factor", dest="timeout_factor", type=float, help="adjust test timeouts by a factor. Setting it to 0 disables all timeouts")
197
195
198
196
self.add_options(parser)
199
197
# Running TestShell in a Jupyter notebook causes an additional -f argument
200
198
# To keep TestShell from failing with an "unrecognized argument" error, we add a dummy "-f" argument
0 commit comments