-
Notifications
You must be signed in to change notification settings - Fork 166
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
Flaky tests: Explore using skip
instead of dontcare
#182
Comments
The yellow ball of |
I am a bit concerned that we'd start losing visibility on the failing tests. What if a flaky test starts failing consistently, for a different reason? I guess I am +0, but let some job (node-daily-master) not ignore flaky tests. |
I want yellow balls to show up on flaky failures, I really don't want the fact that we have this "flaky" thing in here lose visibility, I want collaborators OCD to kick in when they don't get all-green and make them go hunting and solving flakies, so I'm -1 if this means losing the yellow |
If this makes show up as green: nope nope nope |
I also agree it's better to continue running them. |
Ok, I believe we have somewhat of a consensus then. We'll keep running flaky tests. TL;DRPro:
Con:
|
While running the test suite, passing
dontcare
to--flaky-tests
will make the runner run a test but don't care about the output. In a few cases we've marked tests as flaky that times out. This means that we (when not using-J
) will sit and wait for a minute.One counter argument would be that these tests could start failing for other reasons, but I still think the net gain is bigger. At the end of the day, we should encourage debugging and fixing flaky tests. Thoughts?
The text was updated successfully, but these errors were encountered: