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
@click.option("--use-latest-blocks", is_flag=True, help="Uses latest blocks for test data")
212
212
@click.option("--size", default=None, help="Set the size of the test data. e.g. --size S")
213
+
@click.option("--ref-url", default=None, help="Reference Node URL for retrieving test data before test starts. If not specified, target url is used instead.")
213
214
@click.pass_context
214
215
defstart(
215
216
ctx: Context,
@@ -243,6 +244,7 @@ def start(
243
244
use_latest_blocks: bool,
244
245
size: str|None,
245
246
method: str|None=None,
247
+
ref_url: str|None=None,
246
248
) ->None:
247
249
ifnotify:
248
250
click.echo(f"Notify when test is finished using topic: {notify}")
0 commit comments