Skip to content

Commit

Permalink
build: Fix pylint checks timing out
Browse files Browse the repository at this point in the history
Disable "similarity" report in pylint so as to fix the pathological
speed regression that caused most of the checks to timeout.

See pylint-dev/pylint#4120 (comment)
  • Loading branch information
hadess committed Jun 22, 2022
1 parent 2aac58a commit 34fffac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/meson.build
Expand Up @@ -69,7 +69,7 @@ if plugins_option != 'none'
endif
endif

pylint_flags = ['-d', 'C0111', '-d', 'W0511', '-d', 'F0401', '-d', 'C0326' ]
pylint_flags = ['-d', 'C0111', '-d', 'W0511', '-d', 'F0401', '-d', 'C0326', '-d', 'R0801', '-d', 'RP0801' ]

# FIXME: Move custom_target to i18n.merge_file when gettext acquires plugin support.
# http://lists.gnu.org/archive/html/bug-gettext/2017-06/msg00001.html
Expand Down

0 comments on commit 34fffac

Please sign in to comment.