From 4815d7e1c4fd4a310b35ece99631839f5ce1817c Mon Sep 17 00:00:00 2001 From: Nicholas Guriev Date: Tue, 24 Mar 2026 21:20:03 +0300 Subject: [PATCH] Speed up collecting fixtures Suggested-by: Stegalin Ivan (github: stegalin) Co-authored-by: Frank Dana --- pylint_pytest/checkers/fixture.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pylint_pytest/checkers/fixture.py b/pylint_pytest/checkers/fixture.py index 29a3fa3..564f429 100644 --- a/pylint_pytest/checkers/fixture.py +++ b/pylint_pytest/checkers/fixture.py @@ -120,6 +120,9 @@ def visit_module(self, node): node.file, "--fixtures", "--collect-only", + "--quiet", + "-p", + "no:unraisableexception", "--pythonwarnings=ignore:Module already imported:pytest.PytestWarning", ], plugins=[fixture_collector],