Ran Benita
Ran Benita
@ssbarnea Check out https://docs.pytest.org/en/stable/reference/reference.html#confval-verbosity_assertions, added in pytest 8.
Can you explain a bit more why you expect this?
Here are my thoughts on the questions: > 1. Is this a problem we want to fix? Yes; otherwise users can't utilize types in these cases. Also, if we don't,...
> An idea would be to implement declare ABCs, and only export the ABCs Doing this would be nice in that it would really highlight public vs. private. However I...
Effectively if it can be reached from a public object `caplog` without accessing underscored attributes or attributes we explicitly made private in some manner, then it should be considered public,...
I've prepared a branch with a proposal for publishing the fixture types: https://github.com/bluetech/pytest/commits/typing-public-fixtures However I ran into an issue with adding `pytest.Pytester`: the pytester module wants to be assert-rewritten, because...
For now I went with @nicoddemus suggestion of separating just the assertions to a separate plugin. In addition to what I mentioned previously, other things I considered were: 1. Removing...
@mplanchard, thanks, added `ParameterSet` to the list.
Does it work better if you use `pytest --doctest-modules --import-mode=importlib --pyargs my.package`?
In the issue subject you write `--import-mode=importlib` but you are *not* using that right? If you give me a bit of instructions how to reproduce this locally, I can take...