Jacob Walls
Jacob Walls
> pylint use multiple files analysis so pre-commit parallelization make it worse and less deterministic Unless we're ready to say that running pylint with a list of files is a...
That's fair. Probably not worth putting on the roadmap. We should probably document that linting project files is a poorer experience than linting a project.
Thanks for the report. Test case as a diff: ```diff diff --git a/tests/functional/u/undefined/undefined_variable_py312.py b/tests/functional/u/undefined/undefined_variable_py312.py index 0ca2475eb..88a542653 100644 --- a/tests/functional/u/undefined/undefined_variable_py312.py +++ b/tests/functional/u/undefined/undefined_variable_py312.py @@ -4,4 +4,5 @@ def f[T](a: T) -> T:...
Same problem in astroid, see https://github.com/pylint-dev/astroid/actions/runs/7159067546/job/19491909890?pr=2340. Since this has the potential to start blocking us, raising the priority.
Hi @david-yz-liu ! Would you have a minute to recommend a course of action with the failing test in astroid that exhibits a similar issue? - `pydantic` is now one...
Thanks, that's very helpful. Sounds like it's okay to just update the test and ensure that pydantic is either installed or the test is skipped. In terms of urgency, I...
@Pierre-Sassoulas @DanielNoord tried and failed to get `--ignore-patterns` to ignore `.pyi` files. Any regex help?
Thanks for the regex help. Turned out that was a red herring; I was looking at the wrong part of the logs and not seeing why the job failed. There's...
Depends on https://github.com/pylint-dev/astroid/pull/2365
Sure. (Let's be sure not to promise full support for .pyi though, we still need astroid 3.2 with https://github.com/pylint-dev/astroid/pull/2375)