pytest-check 2.0.0b1 available to test.

pip install pytest-check --pre

Change modifies default behavior and deprecates a flag (a new flag, but still).

Reasons: makes it by default faster.

- new `--check-max-tb=0` flag replaces `--check-no-tb`.
- default is for check-max-tb=1

PR: https://github.com/okken/pytest-check/pull/110

I'd love to hear feedback.😀

Speak now or forever (you know how it goes ) file issues without reading the README or the Changelog. 😩 Is that too real for a holiday?

#pytest #pythontesting

2.0.0 - new --check-max-tb, defaults to 1, deprecate --check-no-tb by okken · Pull Request #110 · okken/pytest-check

The default behavior has changed. Since --check-max-tb=1 is the default, the default behavior is now: Show traceback for the first failure per test. (controlled by --check-max-tb, default is 1) Sh...

GitHub
@brianokken I found it really nice, however as part of my workflow I use `pytest --pdb` a lot to debug my tests it seems useless whit check.check_func
@mgreco yep. Doesn’t work for that.
@brianokken I'm wondering (from my ignorance) if it could be possible using the post mortem mechanism to solve this... probably not, but it's just an idea that I could explore (maybe a PR).