diff options
author | Tim Harder <radhermit@gmail.com> | 2019-08-28 03:32:10 -0600 |
---|---|---|
committer | Tim Harder <radhermit@gmail.com> | 2019-08-28 03:36:20 -0600 |
commit | 7d0aa48fb9fbff175a115cd56e567e4c0fdf502f (patch) | |
tree | 252c774e6a2f5c5b3d48cd99275d421dc7cbdb71 /src/pkgcheck/checks/unstable_only.py | |
parent | pkgcheck scan: move check filtering to pre-pipeline building phase (diff) | |
download | pkgcheck-7d0aa48fb9fbff175a115cd56e567e4c0fdf502f.tar.gz pkgcheck-7d0aa48fb9fbff175a115cd56e567e4c0fdf502f.tar.bz2 pkgcheck-7d0aa48fb9fbff175a115cd56e567e4c0fdf502f.zip |
checks: mark all checks requiring pkgsets as having package scope
Diffstat (limited to 'src/pkgcheck/checks/unstable_only.py')
-rw-r--r-- | src/pkgcheck/checks/unstable_only.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkgcheck/checks/unstable_only.py b/src/pkgcheck/checks/unstable_only.py index 5b6b7a94..fa1a26cf 100644 --- a/src/pkgcheck/checks/unstable_only.py +++ b/src/pkgcheck/checks/unstable_only.py @@ -24,6 +24,7 @@ class UnstableOnlyCheck(base.GentooRepoCheck): """Scan for packages that have just unstable keywords.""" feed_type = base.package_feed + scope = base.package_scope required_addons = (addons.StableArchesAddon,) known_results = (UnstableOnly,) |