Releases: gastrofix-gmbh/pytest-failed-to-verify
Releases · gastrofix-gmbh/pytest-failed-to-verify
0.1.4
v0.1.1-alpha
What's New
- temporarily turned off
failed to verify
result in order to make errors visible in the traceback (failed to verify
tests will be marked asfailed
). This is a pre-release fix.
v0.1.0
🎉🥳Very first release of the pytest plugin created to help us at gastrofix (and maybe also you) to fight flaky tests.
This plugin gives you a more detailed output on your pytest report to distinguish the following cases:
PASSED
: test passed without any errorsFAILED
: test failed with errorsFAILED TO VERIFY
: test failed to get to the call phase (the actual test was not run)
Additionally with this plugin you are able to enforce getting to the call phase of pytest by re-running a flaky setup phase multiple times on failure but not the whole test (consisting of setup+call+teardown).
This way you can make sure that your actual tested business logic is being executed and tested and only this way your tests actually provide any valuable outcome.