This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=77fcfe1edb3e8f77d2d217f4f276cfb2a7a9edd8 commit 77fcfe1edb3e8f77d2d217f4f276cfb2a7a9edd8 Author: Guillem Jover <[email protected]> AuthorDate: Sun Sep 15 17:21:42 2019 +0200 test: Skip build directories from codespell These contain files that are not currently skept, and might contain spelling errors from external sources. Warned-by: codespell --- debian/changelog | 1 + t/codespell.t | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index c8dcaac32..c3ca9bf1a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -63,6 +63,7 @@ dpkg (1.20.0) UNRELEASED; urgency=medium * Test suite: - Remove perlcritic Documentation::RequirePodLinksIncludeText suppression. - Clarify cppcheck va_list_usedBeforeStarted suppression. + - Skip build directories from codespell check. [ Updated man pages translations ] * German (Helge Kreutzmann). Closes: #931135 diff --git a/t/codespell.t b/t/codespell.t index 101b00bba..7b4dd3c2a 100644 --- a/t/codespell.t +++ b/t/codespell.t @@ -39,6 +39,8 @@ my @codespell_skip = qw( libtool libtool.m4 aclocal.m4 + build-tree + tmp ); my $codespell_skip = join ',', @codespell_skip; -- Dpkg.Org's dpkg

