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('--list', 'list_contexts', is_flag=True, help="Print as JSON details about each run we would do.")
373
376
@click.option('--list-output-dirs', is_flag=True, help="Only print the prefixes for the results of each batch we run on.")
374
377
@click.option('--list-inputs', is_flag=True, help="Print to stdout a JSON with a list of the inputs we would call qa run on.")
375
-
@click.option('--runner', default=config.get('runners', {}).get('default', 'celery'ifos.name!='nt'else'local'), help="Run runs locally or using a task queue like Celery, LSF...")
378
+
@click.option('--runner', default=default_runner, help="Run runs locally or using a task queue like Celery, LSF...")
376
379
@click.option('--local-concurrency', default=os.environ.get('QA_BATCH_CONCURRENCY', local_config.get('concurrency')), type=int, help="joblib's n_jobs: 0=unlimited, 2=2 at a time, -1=#cpu-1")
377
380
@click.option('--lsf-threads', default=lsf_config.get('threads', 0), type=int, help="restrict number of lsf threads to use. 0=no restriction")
378
381
@click.option('--lsf-memory', default=lsf_config.get('memory', 0), help="restrict memory (MB) to use. 0=no restriction")
0 commit comments