Adam Johnson
Adam Johnson
Thanks for the exact test case @rikroe . Can either of you reproduce the freeze locally? If you run tests with [Python Development Mode](https://docs.python.org/3/library/devmode.html) on and kill the process, `faulthandler`...
It sounds like you have some test pollution, where one test affects this one. The detect-test-pollution tool could help. Without a project to test on myself, I can’t be much...
Yeah, now Ruff has a formatter, I’d be tempted to add this and rename the project to `format-docs` or similar. I think without a Ruff Python API, it wouldn't be...
Thanks for the link, but I’d rather not depend on a “highly experimental” third-party package.
Ruff plans to implement this functionality: https://github.com/astral-sh/ruff/issues/8237
Unfortunately I think this is a Mypy bug: https://github.com/python/mypy/issues/9031 The `object` definition on `BaseDeleteView` actually shouldn’t be there, since it comes from `DeletionMixin`. If it’s removed, the error occurs without...
> to turn the plugin off as needed This is hard to do, the plugin acts at different points in pytest's test lifecycle: collecting tests, then running modules, classes, and...
I think your proposal is too niche to include in pytest-randomly right now. If others +1 this issue, maybe. Also, you *may* be able to achieve what you want with...
I am not really convinced that we need any new mechanism here for opting in. We already have these: 1. Disable the plugin for some test runs with `-p no:randomly`....
> It would be nice to have regression tests for [04fef29](https://github.com/django/django/commit/04fef299cca39f52455c8ea0a5a9115f3c45a337) Sure, but that’s quite a lot of work. Let me play with a `copy.replace()` backport first.