commit: da9e7499dd6ec5e965d539c03e1534bd9ab37509
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 12 17:51:00 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 12 17:51:19 2022 +0000
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=da9e7499
GitCommitsCheck: use Sequential runner
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
src/pkgcheck/checks/__init__.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/pkgcheck/checks/__init__.py b/src/pkgcheck/checks/__init__.py
index 67fa4503..f0959257 100644
--- a/src/pkgcheck/checks/__init__.py
+++ b/src/pkgcheck/checks/__init__.py
@@ -100,6 +100,8 @@ class OptionalCheck(Check):
class GitCommitsCheck(OptionalCheck):
"""Check that is only run when explicitly enabled via the --commits git
option."""
+ runner_cls = runners.SequentialCheckRunner
+
def __init__(self, *args):
super().__init__(*args)
if not self.options.commits: