2023-07-19 09:55:08 by Adam Ciarcinski | Files touched by this commit (2) | ![]() |
Log message: py-test-check: updated to 2.2.0 2.2.0 Added - pseudo traceback additions - `-l` or `--showlocals` shows locals - `__tracebackhide__ = True` is honored. - if `assert` or other exception is involved, - the exception is included as part of the traceback. Changed - pseudo traceback changes - The red color is used more selectively. - this is intended to help readability - Other minor formatting changes. - Please let me know if you have any issues with the changes |
2023-06-10 20:55:49 by Adam Ciarcinski | Files touched by this commit (2) | ![]() |
Log message: py-test-check: updated to 2.1.5 2.1.5 Fixed - Fix [127](https://github.com/okken/pytest-check/issues/127) IndexError when \ running a check in a thread |
2023-05-06 11:06:29 by Thomas Klausner | Files touched by this commit (4) |
Log message: devel/py-test-check: import py-test-check-2.1.4 A pytest plugin that allows multiple failures per test. Normally, a test function will fail and stop running with the first failed `assert`. That's totally fine for tons of kinds of software tests. However, there are times where you'd like to check more than one thing, and you'd really like to know the results of each check, even if one of them fails. `pytest-check` allows multiple failed "checks" per test function, so you can see the whole picture of what's going wrong. |