summaryrefslogtreecommitdiff
path: root/tests/primer
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2022-06-08 13:30:32 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2022-06-09 18:40:55 -0400
commit3117bbbe79476bc72c3e3a1f1b2940fcb3dadf61 (patch)
tree15a7c90a4793694b95e6172765bec04ffbedb866 /tests/primer
parent79dfe9d77f2383e2be70bf1dd93bf1473e34afe1 (diff)
downloadpylint-git-3117bbbe79476bc72c3e3a1f1b2940fcb3dadf61.tar.gz
don't duplicate --rcfile arg
Diffstat (limited to 'tests/primer')
-rw-r--r--tests/primer/primer_tool.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/primer/primer_tool.py b/tests/primer/primer_tool.py
index 2a94dfb55..ae8ca90d1 100644
--- a/tests/primer/primer_tool.py
+++ b/tests/primer/primer_tool.py
@@ -292,8 +292,6 @@ class Primer:
# TODO: Find a way to allow cyclic-import and compare output correctly
disables = ["--disable=duplicate-code,cyclic-import"]
arguments = data.pylint_args + enables + disables
- if data.pylintrc_relpath:
- arguments += [f"--rcfile={data.pylintrc_relpath}"]
output = StringIO()
reporter = JSONReporter(output)
Run(arguments, reporter=reporter, exit=False)