From 4e091a1cf172612ea1f85a0f5531d2e4045ce0d9 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Thu, 4 Sep 2025 06:56:48 -0400 Subject: [PATCH] Tests: Ignore all bots in t_dist_contributors.py --- test_regress/t/t_dist_contributors.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_regress/t/t_dist_contributors.py b/test_regress/t/t_dist_contributors.py index f1a1c4664..aaffa870f 100755 --- a/test_regress/t/t_dist_contributors.py +++ b/test_regress/t/t_dist_contributors.py @@ -57,6 +57,8 @@ def check(): for author in sorted(Authors.keys()): if test.verbose: print("Check: " + author) + if re.search(r'\[bot\]', author): + continue if author not in Contributors: test.error("Certify your contribution by sorted-inserting '" + author + "' into docs/CONTRIBUTORS.\n"