Skip to content

Commit

Permalink
[primer] Enable duplicate-code
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Jun 10, 2023
1 parent 0a88e97 commit b74b96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint/testutils/_primer/primer_run_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _lint_package(
enables = ["--enable-all-extensions", "--enable=all"]
# Duplicate code takes too long and is relatively safe
# TODO: Find a way to allow cyclic-import and compare output correctly
disables = ["--disable=duplicate-code,cyclic-import"]
disables = ["--disable=cyclic-import"]

Check warning on line 86 in pylint/testutils/_primer/primer_run_command.py

View check run for this annotation

Codecov / codecov/patch

pylint/testutils/_primer/primer_run_command.py#L86

Added line #L86 was not covered by tests
additional = ["--clear-cache-post-run=y"]
arguments = data.pylint_args + enables + disables + additional
output = StringIO()
Expand Down

0 comments on commit b74b96d

Please sign in to comment.