Ran Benita
Ran Benita
I think github fixed this issue
It will be really great to have this (I was thinking to implement this myself before I saw @lonelyteapot already did the work). @joseph-roitman Perhaps you can use GitHub's "Squash...
`ALL` sounds good I think. The docs say > When breaking ties between enabled and disabled checks (via select and ignore, respectively), more specific prefixes override less specific prefixes. So...
`-q` disables the update check entirely (including the network call). https://github.com/charliermarsh/ruff/blob/058ee8e6bf6ce482b8ac7423049fe3b9cc9e80a0/src/main_native.rs#L271-L275
Congratulations on 200 releases! Ruff is really terrific.
> Are there any files that, conventionally, should be able to omit an __all__ export? Like "private" modules? In the typing world there is a convention that `from .foo import...
You may also consider transferring the plugin to the pytest-dev organization as described here: https://github.com/pytest-dev/pytest/blob/main/CONTRIBUTING.rst#submitting-plugins-to-pytest-dev
I took a look and came up with this: ```diff diff --git a/src/wsgi/http.rs b/src/wsgi/http.rs index cc0b5cc..71b5eb2 100644 --- a/src/wsgi/http.rs +++ b/src/wsgi/http.rs @@ -3,6 +3,7 @@ use hyper::{ Response, }; use...
@gi0baro `err.display` prints to stderr, but it should be part of the log::warn, no? Like if the log is configured to output to a file or such (maybe it's not...
@cjw296 Can you describe what "request fixtures from pytest.Item" means? It is not very clear. I assume it's not literally requesting a fixture, since `request.getfixturevalue()` exists.