-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "repeat" option to "sigh test". #779
Comments
Potential steps:
|
@mykmartin I recall you'd found a way to use the mocha repeat through double-double-hyphens or something but I can't find it now. |
@shaper Not that I can recall... webdriver has the But that's not applicable to the standard command-line tests run by sigh. |
Is the ultimate goal to optionally retry tests 'n' times until it passes, or to run tests repeatedly to determine flakiness/test latency? |
My intent was the latter: "run tests repeatedly to determine flakiness/test latency". We do need a summary of output, I see that's been mentioned on the PR. Since otherwise we can basically effect with the shell command at the start of this issue. |
I think we can mark this done. You can run a large number of tests to determine flakiness and you get a summary of output. Thanks so much @thebrianchen |
Have to emulate currently, with unnecessary overhead for each run and no built-in summary of pass/fail, via something like:
'for i in `seq 10`; do ./tools/sigh test --grep='demo'; done'
@mmandlis @dstockwell
The text was updated successfully, but these errors were encountered: