We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29cbf1a commit 6be842eCopy full SHA for 6be842e
pylint/testutils/_primer/primer_run_command.py
@@ -77,7 +77,8 @@ def _lint_package(
77
# Duplicate code takes too long and is relatively safe
78
# TODO: Find a way to allow cyclic-import and compare output correctly
79
disables = ["--disable=duplicate-code,cyclic-import"]
80
- arguments = data.pylint_args + enables + disables
+ additional = ["--clear-cache-post-run=y"]
81
+ arguments = data.pylint_args + enables + disables + additional
82
output = StringIO()
83
reporter = JSONReporter(output)
84
print(f"Running 'pylint {', '.join(arguments)}'")
0 commit comments