Ran Benita
Ran Benita
> as far as fixture configuration, parameterization and state management is concerned, a lot of it is has so far primarily stuck on python details Right, I'm mostly interested to...
What is `fixture` in this example?
A note: while supporting basic fixtures is one thing and probably possible, supporting parametrization will be quite a bit more difficult. Even for pytest's own doctests it's broken -- the...
If you don't use the celery pytest support, you can workaround this issue by disabling it in the pytest configuration: ```ini addopts = -p no:celery ```
I'd like to voice my support a separate error code for unused variable in unpacking. The regular F841 is unambiguously useful, but having to add underscores for the unpacking case...
@zanieb I may be misunderstanding your message, but as far as I can see, `x, _y = func()` and `x, _ = func()` already don't raise a violation. My main...
To add my answer: The difference is, with `unused = func()` the obvious fix is to just remove `unused = `, which is clearly better. But with `a, unused_b =...
If I understand correctly, the warnings reported in #10590 were fixed in #10593. The subprocess warning is maybe new or was missed. And the UTF-8 Mode warnings I believe didn't...
Hmm a way forward is definitely unclear, I've opened a setuptools issue asking about this: https://github.com/pypa/setuptools/issues/3943
It does work for me, so I would need some way to reproduce it in order to help.