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
context.ignore_failed= fp.bool('ignore', `e`, false, 'Ignore failed commands (returning a non 0 exit code).')
422
428
context.no_vexe_setenv= fp.bool('no_vexe_reset', `N`, false, 'Do not reset the VEXE env variable at the start. \n By default, VEXE will be set to "", to allow for measuring different V executables. Use this option to override it')
423
429
context.use_newline= fp.bool('newline', `n`, false, 'Use \\n, do not overwrite the last line. Produces more output, but easier to diagnose.')
430
+
context.is_silent= fp.bool('silent', `S`, false, 'Do not show progress lines, print only the final summary. Suitable for CIs.')
431
+
if os.getenv('VREPEAT_SILENT') !='' {
432
+
context.is_silent=true
433
+
}
424
434
context.show_output= fp.bool('output', `O`, false, 'Show command stdout/stderr in the progress indicator for each command. Note: slower, for verbose commands.')
425
435
context.verbose= fp.bool('verbose', `v`, false, 'Be more verbose.')
426
436
context.fail_on_maxtime= fp.int('max_time', `m`, max_time, 'Fail with exit code 2, when first cmd takes above M milliseconds (regression). Default: ${max_time}')
0 commit comments