17

How many people have faced this?

When the test suite completes 99% and fails on one stupid test thats not even part of what you updated.

Comments
  • 6
    And then you notice the test failed on something that someone else changed something you pulled in through git pull --all, you do a clean build and then that test that always fails works again.
  • 2
    You merge develop into your branch, everything works

    Pull request from someone else gets merged into develop, then a second later your PR gets merged into develop

    Develop breaks because PR 1 was not compatible with your PR, everyone's now blaming you

    That. One. Fucking. Test.
  • 2
    I faced randomly failing tests. So my next task was to figure out what's wrong with the test and how to fix it
  • 2
    Yep happens at our company all the time. Annoying af, but everyone goes there is no problem with that, just rerun. Only 16 hours right.
  • 2
    This is like a daily for me 10/10 cry every god damn time
Add Comment