Merge ~jslarraz/review-tools:schema-add-type into review-tools:master

Proposed by Jorge Sancho Larraz
Status: Merged
Merged at revision: c9fbd37860f7cab134142578eb48ca6c89c8f864
Proposed branch: ~jslarraz/review-tools:schema-add-type
Merge into: review-tools:master
Diff against target: 2536 lines (+36/-903)
9 files modified
check-names.list (+0/-1)
reviewtools/schemas/schema_validator.py (+7/-1)
reviewtools/schemas/snap.json (+6/-0)
reviewtools/sr_common.py (+0/-9)
reviewtools/sr_declaration.py (+4/-2)
reviewtools/sr_lint.py (+0/-10)
reviewtools/tests/schemas/test_schema_snap.py (+19/-0)
reviewtools/tests/test_sr_lint.py (+0/-36)
tests/test.sh.expected (+0/-844)
Reviewer Review Type Date Requested Status
Alex Murray Approve
Review via email: mp+466454@code.launchpad.net

Commit message

many: check type via schema

To post a comment you must log in.
Revision history for this message
Alex Murray (alexmurray) wrote :

LGTM but one minor suggestion to see if we can avoid hardcoding the snap types in sr_declaration.py

review: Needs Information
Revision history for this message
Jorge Sancho Larraz (jslarraz) wrote :
Revision history for this message
Alex Murray (alexmurray) wrote :

Thanks, LGTM!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
diff --git a/check-names.list b/check-names.list
index 1498e85..cbe0bdc 100644
--- a/check-names.list
+++ b/check-names.list
@@ -125,7 +125,6 @@ lint-snap-v2:slots_required_attributes|
125lint-snap-v2:slots|125lint-snap-v2:slots|
126lint-snap-v2:snap_manifest|126lint-snap-v2:snap_manifest|
127lint-snap-v2:snap_type_redflag|127lint-snap-v2:snap_type_redflag|
128lint-snap-v2:snap_type_valid|
129lint-snap-v2:sockets_listen_stream|128lint-snap-v2:sockets_listen_stream|
130lint-snap-v2:sockets_socket-mode|129lint-snap-v2:sockets_socket-mode|
131lint-snap-v2:sockets_type|130lint-snap-v2:sockets_type|
diff --git a/reviewtools/schemas/schema_validator.py b/reviewtools/schemas/schema_validator.py
index d9803c3..9889d20 100644
--- a/reviewtools/schemas/schema_validator.py
+++ b/reviewtools/schemas/schema_validator.py
@@ -4,7 +4,7 @@ import jsonschema
4from pkg_resources import resource_filename4from pkg_resources import resource_filename
55
66
7def validate(yaml, schema_name):7def load_schema(schema_name: str) -> dict:
8 # prefer local copy if it exists, otherwise, use one shipped in the8 # prefer local copy if it exists, otherwise, use one shipped in the
9 # package9 # package
10 schema_fn = "./reviewtools/schemas/%s" % schema_name10 schema_fn = "./reviewtools/schemas/%s" % schema_name
@@ -16,6 +16,12 @@ def validate(yaml, schema_name):
16 with open(schema_fn) as fd:16 with open(schema_fn) as fd:
17 schema = json.loads(fd.read())17 schema = json.loads(fd.read())
1818
19 return schema
20
21
22def validate(yaml, schema_name):
23 schema = load_schema(schema_name)
24
19 resolver = jsonschema.RefResolver(25 resolver = jsonschema.RefResolver(
20 "file://%s/" % os.path.abspath(os.path.dirname(__file__)), None26 "file://%s/" % os.path.abspath(os.path.dirname(__file__)), None
21 )27 )
diff --git a/reviewtools/schemas/snap.json b/reviewtools/schemas/snap.json
index 8d9c6bd..7051faa 100644
--- a/reviewtools/schemas/snap.json
+++ b/reviewtools/schemas/snap.json
@@ -16,6 +16,12 @@
16 "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9:.+~-]*[a-zA-Z0-9+~])?$",16 "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9:.+~-]*[a-zA-Z0-9+~])?$",
17 "maxLength": 3217 "maxLength": 32
18 },18 },
19 "type": {
20 "description": "The type of snap.",
21 "type": "string",
22 "enum": ["app", "base", "core", "kernel", "gadget", "os", "snapd"],
23 "default": "app"
24 },
19 "architectures": {25 "architectures": {
20 "description": "List of architectures.",26 "description": "List of architectures.",
21 "type": "array",27 "type": "array",
diff --git a/reviewtools/sr_common.py b/reviewtools/sr_common.py
index 5ded6d8..e39a68a 100644
--- a/reviewtools/sr_common.py
+++ b/reviewtools/sr_common.py
@@ -138,15 +138,6 @@ class SnapReview(ReviewBase):
138 hooks_required = []138 hooks_required = []
139 hooks_optional = ["command-chain", "environment", "plugs", "slots"]139 hooks_optional = ["command-chain", "environment", "plugs", "slots"]
140140
141 # Valid values for 'type' in packaging yaml
142 # - app
143 # - core
144 # - kernel
145 # - gadget
146 # - os (deprecated)
147 # - snapd
148 valid_snap_types = ["app", "base", "core", "kernel", "gadget", "os", "snapd"]
149
150 # snap/hooktypes.go141 # snap/hooktypes.go
151 valid_hook_types = [142 valid_hook_types = [
152 "check-health",143 "check-health",
diff --git a/reviewtools/sr_declaration.py b/reviewtools/sr_declaration.py
index 5af713a..edfe023 100644
--- a/reviewtools/sr_declaration.py
+++ b/reviewtools/sr_declaration.py
@@ -18,6 +18,7 @@ from __future__ import print_function
18from reviewtools.sr_common import SnapReview, SnapReviewException18from reviewtools.sr_common import SnapReview, SnapReviewException
19from reviewtools.common import error, ReviewBase, read_snapd_base_declaration19from reviewtools.common import error, ReviewBase, read_snapd_base_declaration
20from reviewtools.overrides import sec_iface_ref_overrides20from reviewtools.overrides import sec_iface_ref_overrides
21from reviewtools.schemas.schema_validator import load_schema
21import copy22import copy
22import re23import re
2324
@@ -456,7 +457,9 @@ class SnapReviewDeclaration(SnapReview):
456 cstr_key == "plug-snap-type" or cstr_key == "slot-snap-type"457 cstr_key == "plug-snap-type" or cstr_key == "slot-snap-type"
457 ):458 ):
458 for snap_type in cstr[cstr_key]:459 for snap_type in cstr[cstr_key]:
459 if snap_type not in self.valid_snap_types:460 # TODO: Check it via declaration.json schema :)
461 snap_schema = load_schema("snap.json")
462 if snap_type not in snap_schema["properties"]["type"]["enum"]:
460 malformed(n, "invalid snap type '%s'" % snap_type)463 malformed(n, "invalid snap type '%s'" % snap_type)
461 found_errors = True464 found_errors = True
462 break465 break
@@ -1511,7 +1514,6 @@ def verify_snap_declaration(snap_decl, base_decl=None):
15111514
1512 # Setup everything needed by _verify_declaration()1515 # Setup everything needed by _verify_declaration()
1513 review.interfaces_attribs = SnapReview.interfaces_attribs1516 review.interfaces_attribs = SnapReview.interfaces_attribs
1514 review.valid_snap_types = SnapReview.valid_snap_types
15151517
1516 # Read in and verify the base declaration1518 # Read in and verify the base declaration
1517 if base_decl is None:1519 if base_decl is None:
diff --git a/reviewtools/sr_lint.py b/reviewtools/sr_lint.py
index 83a9dfa..17c8e3a 100644
--- a/reviewtools/sr_lint.py
+++ b/reviewtools/sr_lint.py
@@ -160,16 +160,6 @@ class SnapReviewLint(SnapReview):
160 # snap/validate.go160 # snap/validate.go
161 self._check_description_summary_title("title", 40)161 self._check_description_summary_title("title", 40)
162162
163 def check_type(self):
164 """Check type"""
165 t = "info"
166 n = self._get_check_name("snap_type_valid")
167 s = "OK"
168 if self.snap_yaml["type"] not in self.valid_snap_types:
169 t = "error"
170 s = "unknown 'type': '%s'" % self.snap_yaml["type"]
171 self._add_result(t, n, s)
172
173 def check_type_redflagged(self):163 def check_type_redflagged(self):
174 """Check if type is redflagged"""164 """Check if type is redflagged"""
175 t = "info"165 t = "info"
diff --git a/reviewtools/tests/schemas/test_schema_snap.py b/reviewtools/tests/schemas/test_schema_snap.py
index ed4853d..3530892 100644
--- a/reviewtools/tests/schemas/test_schema_snap.py
+++ b/reviewtools/tests/schemas/test_schema_snap.py
@@ -121,6 +121,25 @@ class TestSchemaSnap(TestSchemaBase):
121 error = error.replace("{value}", str(value)) if error else error121 error = error.replace("{value}", str(value)) if error else error
122 self._test_value("version", value, error)122 self._test_value("version", value, error)
123123
124 def test_type(self):
125 for value, error in [
126 # test_check_type - unspecified
127 (None, None),
128 # test_check_type_app
129 ("app", None),
130 # test_check_type_framework
131 ("framework", "'{value}' is not one of "),
132 # test_check_type_unknown
133 ("nonexistent", "'{value}' is not one of "),
134 # ### integer
135 (2, "{value} is not of type 'string'"),
136 # ### list
137 ([], "{value} is not of type 'string'"),
138 ]:
139 with self.subTest(value=value):
140 error = error.replace("{value}", str(value)) if error else error
141 self._test_value("type", value, error)
142
124 def test_architecture(self):143 def test_architecture(self):
125 for value, error in [144 for value, error in [
126 # test_check_architectures_bad145 # test_check_architectures_bad
diff --git a/reviewtools/tests/test_sr_lint.py b/reviewtools/tests/test_sr_lint.py
index 50499fd..e530ab7 100644
--- a/reviewtools/tests/test_sr_lint.py
+++ b/reviewtools/tests/test_sr_lint.py
@@ -143,33 +143,6 @@ class TestSnapReviewLint(sr_tests.TestSnapReview):
143 sum += len(c.review_report[i])143 sum += len(c.review_report[i])
144 self.assertTrue(sum != 0)144 self.assertTrue(sum != 0)
145145
146 def test_check_type(self):
147 """Test check_type - unspecified"""
148 self.set_test_snap_yaml("type", None)
149 c = SnapReviewLint(self.test_name)
150 c.check_type()
151 r = c.review_report
152 expected_counts = {"info": 1, "warn": 0, "error": 0}
153 self.check_results(r, expected_counts)
154
155 def test_check_type_app(self):
156 """Test check_type - app"""
157 self.set_test_snap_yaml("type", "app")
158 c = SnapReviewLint(self.test_name)
159 c.check_type()
160 r = c.review_report
161 expected_counts = {"info": 1, "warn": 0, "error": 0}
162 self.check_results(r, expected_counts)
163
164 def test_check_type_framework(self):
165 """Test check_type - framework"""
166 self.set_test_snap_yaml("type", "framework")
167 c = SnapReviewLint(self.test_name)
168 c.check_type()
169 r = c.review_report
170 expected_counts = {"info": 0, "warn": 0, "error": 1}
171 self.check_results(r, expected_counts)
172
173 def test_check_type_redflagged(self):146 def test_check_type_redflagged(self):
174 """Test check_type_redflagged - unspecified"""147 """Test check_type_redflagged - unspecified"""
175 self.set_test_snap_yaml("type", None)148 self.set_test_snap_yaml("type", None)
@@ -335,15 +308,6 @@ class TestSnapReviewLint(sr_tests.TestSnapReview):
335 name = c._get_check_name("snap_type_redflag")308 name = c._get_check_name("snap_type_redflag")
336 self.check_manual_review(r, name)309 self.check_manual_review(r, name)
337310
338 def test_check_type_unknown(self):
339 """Test check_type - unknown"""
340 self.set_test_snap_yaml("type", "nonexistent")
341 c = SnapReviewLint(self.test_name)
342 c.check_type()
343 r = c.review_report
344 expected_counts = {"info": None, "warn": 0, "error": 1}
345 self.check_results(r, expected_counts)
346
347 def test_check_icon(self):311 def test_check_icon(self):
348 """Test check_icon()"""312 """Test check_icon()"""
349 self.set_test_snap_yaml("icon", "someicon")313 self.set_test_snap_yaml("icon", "someicon")
diff --git a/tests/test.sh.expected b/tests/test.sh.expected
index 04cbb7a..b677857 100644
--- a/tests/test.sh.expected
+++ b/tests/test.sh.expected
@@ -55,10 +55,6 @@ bare_1.0_all.snap: pass
55 "manual_review": false,55 "manual_review": false,
56 "text": "OK (override 'bare' for 'type: base')"56 "text": "OK (override 'bare' for 'type: base')"
57 },57 },
58 "lint-snap-v2:snap_type_valid": {
59 "manual_review": false,
60 "text": "OK"
61 },
62 "lint-snap-v2:summary": {58 "lint-snap-v2:summary": {
63 "manual_review": false,59 "manual_review": false,
64 "text": "OK"60 "text": "OK"
@@ -158,10 +154,6 @@ bare_1.0_all.snap: pass
158 "manual_review": false,154 "manual_review": false,
159 "text": "OK (override 'bare' for 'type: base')"155 "text": "OK (override 'bare' for 'type: base')"
160 },156 },
161 "lint-snap-v2:snap_type_valid": {
162 "manual_review": false,
163 "text": "OK"
164 },
165 "lint-snap-v2:summary": {157 "lint-snap-v2:summary": {
166 "manual_review": false,158 "manual_review": false,
167 "text": "OK"159 "text": "OK"
@@ -298,10 +290,6 @@ busybox-static-mvo_2.snap: pass
298 "manual_review": false,290 "manual_review": false,
299 "text": "OK"291 "text": "OK"
300 },292 },
301 "lint-snap-v2:snap_type_valid": {
302 "manual_review": false,
303 "text": "OK"
304 },
305 "lint-snap-v2:summary": {293 "lint-snap-v2:summary": {
306 "manual_review": false,294 "manual_review": false,
307 "text": "OK"295 "text": "OK"
@@ -445,10 +433,6 @@ busybox-static-mvo_2.snap: pass
445 "manual_review": false,433 "manual_review": false,
446 "text": "OK"434 "text": "OK"
447 },435 },
448 "lint-snap-v2:snap_type_valid": {
449 "manual_review": false,
450 "text": "OK"
451 },
452 "lint-snap-v2:summary": {436 "lint-snap-v2:summary": {
453 "manual_review": false,437 "manual_review": false,
454 "text": "OK"438 "text": "OK"
@@ -723,10 +707,6 @@ chrome-test_52.0.2743.116-1+test1_amd64.snap: FAIL
723 "manual_review": false,707 "manual_review": false,
724 "text": "OK"708 "text": "OK"
725 },709 },
726 "lint-snap-v2:snap_type_valid": {
727 "manual_review": false,
728 "text": "OK"
729 },
730 "lint-snap-v2:summary": {710 "lint-snap-v2:summary": {
731 "manual_review": false,711 "manual_review": false,
732 "text": "OK"712 "text": "OK"
@@ -992,10 +972,6 @@ chrome-test_52.0.2743.116-1+test1_amd64.snap: FAIL
992 "manual_review": false,972 "manual_review": false,
993 "text": "OK"973 "text": "OK"
994 },974 },
995 "lint-snap-v2:snap_type_valid": {
996 "manual_review": false,
997 "text": "OK"
998 },
999 "lint-snap-v2:summary": {975 "lint-snap-v2:summary": {
1000 "manual_review": false,976 "manual_review": false,
1001 "text": "OK"977 "text": "OK"
@@ -1140,10 +1116,6 @@ chromium-lzo_1.snap: pass
1140 "manual_review": false,1116 "manual_review": false,
1141 "text": "OK"1117 "text": "OK"
1142 },1118 },
1143 "lint-snap-v2:snap_type_valid": {
1144 "manual_review": false,
1145 "text": "OK"
1146 },
1147 "lint-snap-v2:summary": {1119 "lint-snap-v2:summary": {
1148 "manual_review": false,1120 "manual_review": false,
1149 "text": "OK"1121 "text": "OK"
@@ -1287,10 +1259,6 @@ chromium-lzo_1.snap: pass
1287 "manual_review": false,1259 "manual_review": false,
1288 "text": "OK"1260 "text": "OK"
1289 },1261 },
1290 "lint-snap-v2:snap_type_valid": {
1291 "manual_review": false,
1292 "text": "OK"
1293 },
1294 "lint-snap-v2:summary": {1262 "lint-snap-v2:summary": {
1295 "manual_review": false,1263 "manual_review": false,
1296 "text": "OK"1264 "text": "OK"
@@ -1504,10 +1472,6 @@ classic_16.04+test1_all.snap: FAIL
1504 "manual_review": false,1472 "manual_review": false,
1505 "text": "OK"1473 "text": "OK"
1506 },1474 },
1507 "lint-snap-v2:snap_type_valid": {
1508 "manual_review": false,
1509 "text": "OK"
1510 },
1511 "lint-snap-v2:summary": {1475 "lint-snap-v2:summary": {
1512 "manual_review": false,1476 "manual_review": false,
1513 "text": "OK"1477 "text": "OK"
@@ -1720,10 +1684,6 @@ classic_16.04+test1_all.snap: FAIL
1720 "manual_review": false,1684 "manual_review": false,
1721 "text": "OK"1685 "text": "OK"
1722 },1686 },
1723 "lint-snap-v2:snap_type_valid": {
1724 "manual_review": false,
1725 "text": "OK"
1726 },
1727 "lint-snap-v2:summary": {1687 "lint-snap-v2:summary": {
1728 "manual_review": false,1688 "manual_review": false,
1729 "text": "OK"1689 "text": "OK"
@@ -1901,10 +1861,6 @@ devmode-home_0.1_amd64.snap: pass
1901 "manual_review": false,1861 "manual_review": false,
1902 "text": "OK"1862 "text": "OK"
1903 },1863 },
1904 "lint-snap-v2:snap_type_valid": {
1905 "manual_review": false,
1906 "text": "OK"
1907 },
1908 "lint-snap-v2:summary": {1864 "lint-snap-v2:summary": {
1909 "manual_review": false,1865 "manual_review": false,
1910 "text": "OK"1866 "text": "OK"
@@ -2065,10 +2021,6 @@ devmode-home_0.1_amd64.snap: pass
2065 "manual_review": false,2021 "manual_review": false,
2066 "text": "OK"2022 "text": "OK"
2067 },2023 },
2068 "lint-snap-v2:snap_type_valid": {
2069 "manual_review": false,
2070 "text": "OK"
2071 },
2072 "lint-snap-v2:summary": {2024 "lint-snap-v2:summary": {
2073 "manual_review": false,2025 "manual_review": false,
2074 "text": "OK"2026 "text": "OK"
@@ -2427,10 +2379,6 @@ firefox_48.0+build2-0ubuntu0.16.04.1+_amd64.snap: FAIL
2427 "manual_review": false,2379 "manual_review": false,
2428 "text": "OK"2380 "text": "OK"
2429 },2381 },
2430 "lint-snap-v2:snap_type_valid": {
2431 "manual_review": false,
2432 "text": "OK"
2433 },
2434 "lint-snap-v2:summary": {2382 "lint-snap-v2:summary": {
2435 "manual_review": false,2383 "manual_review": false,
2436 "text": "OK"2384 "text": "OK"
@@ -2784,10 +2732,6 @@ firefox_48.0+build2-0ubuntu0.16.04.1+_amd64.snap: FAIL
2784 "manual_review": false,2732 "manual_review": false,
2785 "text": "OK"2733 "text": "OK"
2786 },2734 },
2787 "lint-snap-v2:snap_type_valid": {
2788 "manual_review": false,
2789 "text": "OK"
2790 },
2791 "lint-snap-v2:summary": {2735 "lint-snap-v2:summary": {
2792 "manual_review": false,2736 "manual_review": false,
2793 "text": "OK"2737 "text": "OK"
@@ -2915,10 +2859,6 @@ gke-kernel_4.15.0-1027.28~16.04.1_amd64.snap: pass
2915 "manual_review": false,2859 "manual_review": false,
2916 "text": "OK (override 'gke-kernel' for 'type: kernel')"2860 "text": "OK (override 'gke-kernel' for 'type: kernel')"
2917 },2861 },
2918 "lint-snap-v2:snap_type_valid": {
2919 "manual_review": false,
2920 "text": "OK"
2921 },
2922 "lint-snap-v2:summary": {2862 "lint-snap-v2:summary": {
2923 "manual_review": false,2863 "manual_review": false,
2924 "text": "OK"2864 "text": "OK"
@@ -3021,10 +2961,6 @@ gke-kernel_4.15.0-1027.28~16.04.1_amd64.snap: pass
3021 "manual_review": false,2961 "manual_review": false,
3022 "text": "OK (override 'gke-kernel' for 'type: kernel')"2962 "text": "OK (override 'gke-kernel' for 'type: kernel')"
3023 },2963 },
3024 "lint-snap-v2:snap_type_valid": {
3025 "manual_review": false,
3026 "text": "OK"
3027 },
3028 "lint-snap-v2:summary": {2964 "lint-snap-v2:summary": {
3029 "manual_review": false,2965 "manual_review": false,
3030 "text": "OK"2966 "text": "OK"
@@ -3132,10 +3068,6 @@ gke-kernel_4.15.0-1069.72_amd64.snap: pass
3132 "manual_review": false,3068 "manual_review": false,
3133 "text": "OK (override 'gke-kernel' for 'type: kernel')"3069 "text": "OK (override 'gke-kernel' for 'type: kernel')"
3134 },3070 },
3135 "lint-snap-v2:snap_type_valid": {
3136 "manual_review": false,
3137 "text": "OK"
3138 },
3139 "lint-snap-v2:summary": {3071 "lint-snap-v2:summary": {
3140 "manual_review": false,3072 "manual_review": false,
3141 "text": "OK"3073 "text": "OK"
@@ -3238,10 +3170,6 @@ gke-kernel_4.15.0-1069.72_amd64.snap: pass
3238 "manual_review": false,3170 "manual_review": false,
3239 "text": "OK (override 'gke-kernel' for 'type: kernel')"3171 "text": "OK (override 'gke-kernel' for 'type: kernel')"
3240 },3172 },
3241 "lint-snap-v2:snap_type_valid": {
3242 "manual_review": false,
3243 "text": "OK"
3244 },
3245 "lint-snap-v2:summary": {3173 "lint-snap-v2:summary": {
3246 "manual_review": false,3174 "manual_review": false,
3247 "text": "OK"3175 "text": "OK"
@@ -3500,10 +3428,6 @@ glance_ocata_amd64.snap: pass
3500 "manual_review": false,3428 "manual_review": false,
3501 "text": "OK"3429 "text": "OK"
3502 },3430 },
3503 "lint-snap-v2:snap_type_valid": {
3504 "manual_review": false,
3505 "text": "OK"
3506 },
3507 "lint-snap-v2:summary": {3431 "lint-snap-v2:summary": {
3508 "manual_review": false,3432 "manual_review": false,
3509 "text": "OK"3433 "text": "OK"
@@ -3781,10 +3705,6 @@ glance_ocata_amd64.snap: pass
3781 "manual_review": false,3705 "manual_review": false,
3782 "text": "OK"3706 "text": "OK"
3783 },3707 },
3784 "lint-snap-v2:snap_type_valid": {
3785 "manual_review": false,
3786 "text": "OK"
3787 },
3788 "lint-snap-v2:summary": {3708 "lint-snap-v2:summary": {
3789 "manual_review": false,3709 "manual_review": false,
3790 "text": "OK"3710 "text": "OK"
@@ -4099,10 +4019,6 @@ hello-world_25.snap: pass
4099 "manual_review": false,4019 "manual_review": false,
4100 "text": "OK"4020 "text": "OK"
4101 },4021 },
4102 "lint-snap-v2:snap_type_valid": {
4103 "manual_review": false,
4104 "text": "OK"
4105 },
4106 "lint-snap-v2:summary": {4022 "lint-snap-v2:summary": {
4107 "manual_review": false,4023 "manual_review": false,
4108 "text": "OK"4024 "text": "OK"
@@ -4386,10 +4302,6 @@ hello-world_25.snap: pass
4386 "manual_review": false,4302 "manual_review": false,
4387 "text": "OK"4303 "text": "OK"
4388 },4304 },
4389 "lint-snap-v2:snap_type_valid": {
4390 "manual_review": false,
4391 "text": "OK"
4392 },
4393 "lint-snap-v2:summary": {4305 "lint-snap-v2:summary": {
4394 "manual_review": false,4306 "manual_review": false,
4395 "text": "OK"4307 "text": "OK"
@@ -4537,10 +4449,6 @@ linux-generic-bbb_4.4.0-140-1_armhf.snap: pass
4537 "manual_review": false,4449 "manual_review": false,
4538 "text": "OK (override 'linux-generic-bbb' for 'type: kernel')"4450 "text": "OK (override 'linux-generic-bbb' for 'type: kernel')"
4539 },4451 },
4540 "lint-snap-v2:snap_type_valid": {
4541 "manual_review": false,
4542 "text": "OK"
4543 },
4544 "lint-snap-v2:summary": {4452 "lint-snap-v2:summary": {
4545 "manual_review": false,4453 "manual_review": false,
4546 "text": "OK"4454 "text": "OK"
@@ -4643,10 +4551,6 @@ linux-generic-bbb_4.4.0-140-1_armhf.snap: pass
4643 "manual_review": false,4551 "manual_review": false,
4644 "text": "OK (override 'linux-generic-bbb' for 'type: kernel')"4552 "text": "OK (override 'linux-generic-bbb' for 'type: kernel')"
4645 },4553 },
4646 "lint-snap-v2:snap_type_valid": {
4647 "manual_review": false,
4648 "text": "OK"
4649 },
4650 "lint-snap-v2:summary": {4554 "lint-snap-v2:summary": {
4651 "manual_review": false,4555 "manual_review": false,
4652 "text": "OK"4556 "text": "OK"
@@ -4783,10 +4687,6 @@ minimumsize_0.1_amd64.snap: pass
4783 "manual_review": false,4687 "manual_review": false,
4784 "text": "OK"4688 "text": "OK"
4785 },4689 },
4786 "lint-snap-v2:snap_type_valid": {
4787 "manual_review": false,
4788 "text": "OK"
4789 },
4790 "lint-snap-v2:summary": {4690 "lint-snap-v2:summary": {
4791 "manual_review": false,4691 "manual_review": false,
4792 "text": "OK"4692 "text": "OK"
@@ -4918,10 +4818,6 @@ minimumsize_0.1_amd64.snap: pass
4918 "manual_review": false,4818 "manual_review": false,
4919 "text": "OK"4819 "text": "OK"
4920 },4820 },
4921 "lint-snap-v2:snap_type_valid": {
4922 "manual_review": false,
4923 "text": "OK"
4924 },
4925 "lint-snap-v2:summary": {4821 "lint-snap-v2:summary": {
4926 "manual_review": false,4822 "manual_review": false,
4927 "text": "OK"4823 "text": "OK"
@@ -5070,10 +4966,6 @@ network-manager_1.10.6-2ubuntu1.0+dbce8fd2_amd64.snap: pass
5070 "manual_review": false,4966 "manual_review": false,
5071 "text": "OK"4967 "text": "OK"
5072 },4968 },
5073 "lint-snap-v2:snap_type_valid": {
5074 "manual_review": false,
5075 "text": "OK"
5076 },
5077 "lint-snap-v2:summary": {4969 "lint-snap-v2:summary": {
5078 "manual_review": false,4970 "manual_review": false,
5079 "text": "OK"4971 "text": "OK"
@@ -5233,10 +5125,6 @@ network-manager_1.10.6-2ubuntu1.0+dbce8fd2_amd64.snap: pass
5233 "manual_review": false,5125 "manual_review": false,
5234 "text": "OK"5126 "text": "OK"
5235 },5127 },
5236 "lint-snap-v2:snap_type_valid": {
5237 "manual_review": false,
5238 "text": "OK"
5239 },
5240 "lint-snap-v2:summary": {5128 "lint-snap-v2:summary": {
5241 "manual_review": false,5129 "manual_review": false,
5242 "text": "OK"5130 "text": "OK"
@@ -5466,10 +5354,6 @@ network-manager_1.2.2-1+test1_amd64.snap: FAIL
5466 "manual_review": false,5354 "manual_review": false,
5467 "text": "OK"5355 "text": "OK"
5468 },5356 },
5469 "lint-snap-v2:snap_type_valid": {
5470 "manual_review": false,
5471 "text": "OK"
5472 },
5473 "lint-snap-v2:summary": {5357 "lint-snap-v2:summary": {
5474 "manual_review": false,5358 "manual_review": false,
5475 "text": "OK"5359 "text": "OK"
@@ -5692,10 +5576,6 @@ network-manager_1.2.2-1+test1_amd64.snap: FAIL
5692 "manual_review": false,5576 "manual_review": false,
5693 "text": "OK"5577 "text": "OK"
5694 },5578 },
5695 "lint-snap-v2:snap_type_valid": {
5696 "manual_review": false,
5697 "text": "OK"
5698 },
5699 "lint-snap-v2:summary": {5579 "lint-snap-v2:summary": {
5700 "manual_review": false,5580 "manual_review": false,
5701 "text": "OK"5581 "text": "OK"
@@ -5892,10 +5772,6 @@ nix-example-jormungandr_f7xva0vh9fzv20vhyr121yd6ahplqh9v_amd64.snap: pass
5892 "manual_review": false,5772 "manual_review": false,
5893 "text": "OK"5773 "text": "OK"
5894 },5774 },
5895 "lint-snap-v2:snap_type_valid": {
5896 "manual_review": false,
5897 "text": "OK"
5898 },
5899 "lint-snap-v2:summary": {5775 "lint-snap-v2:summary": {
5900 "manual_review": false,5776 "manual_review": false,
5901 "text": "summary is too short: 'jormungandr'"5777 "text": "summary is too short: 'jormungandr'"
@@ -6087,10 +5963,6 @@ nix-example-jormungandr_f7xva0vh9fzv20vhyr121yd6ahplqh9v_amd64.snap: pass
6087 "manual_review": false,5963 "manual_review": false,
6088 "text": "OK"5964 "text": "OK"
6089 },5965 },
6090 "lint-snap-v2:snap_type_valid": {
6091 "manual_review": false,
6092 "text": "OK"
6093 },
6094 "lint-snap-v2:summary": {5966 "lint-snap-v2:summary": {
6095 "manual_review": false,5967 "manual_review": false,
6096 "text": "summary is too short: 'jormungandr'"5968 "text": "summary is too short: 'jormungandr'"
@@ -6376,10 +6248,6 @@ nix-example_g7qmi8r4qwws6fhwschfb8aib5wl0x1q_amd64.snap: pass
6376 "manual_review": false,6248 "manual_review": false,
6377 "text": "OK"6249 "text": "OK"
6378 },6250 },
6379 "lint-snap-v2:snap_type_valid": {
6380 "manual_review": false,
6381 "text": "OK"
6382 },
6383 "lint-snap-v2:summary": {6251 "lint-snap-v2:summary": {
6384 "manual_review": false,6252 "manual_review": false,
6385 "text": "OK"6253 "text": "OK"
@@ -6656,10 +6524,6 @@ nix-example_g7qmi8r4qwws6fhwschfb8aib5wl0x1q_amd64.snap: pass
6656 "manual_review": false,6524 "manual_review": false,
6657 "text": "OK"6525 "text": "OK"
6658 },6526 },
6659 "lint-snap-v2:snap_type_valid": {
6660 "manual_review": false,
6661 "text": "OK"
6662 },
6663 "lint-snap-v2:summary": {6527 "lint-snap-v2:summary": {
6664 "manual_review": false,6528 "manual_review": false,
6665 "text": "OK"6529 "text": "OK"
@@ -6833,10 +6697,6 @@ notify-send_1_amd64.snap: pass
6833 "manual_review": false,6697 "manual_review": false,
6834 "text": "OK"6698 "text": "OK"
6835 },6699 },
6836 "lint-snap-v2:snap_type_valid": {
6837 "manual_review": false,
6838 "text": "OK"
6839 },
6840 "lint-snap-v2:summary": {6700 "lint-snap-v2:summary": {
6841 "manual_review": false,6701 "manual_review": false,
6842 "text": "OK"6702 "text": "OK"
@@ -7005,10 +6865,6 @@ notify-send_1_amd64.snap: pass
7005 "manual_review": false,6865 "manual_review": false,
7006 "text": "OK"6866 "text": "OK"
7007 },6867 },
7008 "lint-snap-v2:snap_type_valid": {
7009 "manual_review": false,
7010 "text": "OK"
7011 },
7012 "lint-snap-v2:summary": {6868 "lint-snap-v2:summary": {
7013 "manual_review": false,6869 "manual_review": false,
7014 "text": "OK"6870 "text": "OK"
@@ -7132,10 +6988,6 @@ pc-kernel_4.15.0-44.46_i386.snap: pass
7132 "manual_review": false,6988 "manual_review": false,
7133 "text": "OK (override 'pc-kernel' for 'type: kernel')"6989 "text": "OK (override 'pc-kernel' for 'type: kernel')"
7134 },6990 },
7135 "lint-snap-v2:snap_type_valid": {
7136 "manual_review": false,
7137 "text": "OK"
7138 },
7139 "lint-snap-v2:summary": {6991 "lint-snap-v2:summary": {
7140 "manual_review": false,6992 "manual_review": false,
7141 "text": "OK"6993 "text": "OK"
@@ -7238,10 +7090,6 @@ pc-kernel_4.15.0-44.46_i386.snap: pass
7238 "manual_review": false,7090 "manual_review": false,
7239 "text": "OK (override 'pc-kernel' for 'type: kernel')"7091 "text": "OK (override 'pc-kernel' for 'type: kernel')"
7240 },7092 },
7241 "lint-snap-v2:snap_type_valid": {
7242 "manual_review": false,
7243 "text": "OK"
7244 },
7245 "lint-snap-v2:summary": {7093 "lint-snap-v2:summary": {
7246 "manual_review": false,7094 "manual_review": false,
7247 "text": "OK"7095 "text": "OK"
@@ -7349,10 +7197,6 @@ pc-kernel_4.4.0-141.167_amd64.snap: pass
7349 "manual_review": false,7197 "manual_review": false,
7350 "text": "OK (override 'pc-kernel' for 'type: kernel')"7198 "text": "OK (override 'pc-kernel' for 'type: kernel')"
7351 },7199 },
7352 "lint-snap-v2:snap_type_valid": {
7353 "manual_review": false,
7354 "text": "OK"
7355 },
7356 "lint-snap-v2:summary": {7200 "lint-snap-v2:summary": {
7357 "manual_review": false,7201 "manual_review": false,
7358 "text": "OK"7202 "text": "OK"
@@ -7455,10 +7299,6 @@ pc-kernel_4.4.0-141.167_amd64.snap: pass
7455 "manual_review": false,7299 "manual_review": false,
7456 "text": "OK (override 'pc-kernel' for 'type: kernel')"7300 "text": "OK (override 'pc-kernel' for 'type: kernel')"
7457 },7301 },
7458 "lint-snap-v2:snap_type_valid": {
7459 "manual_review": false,
7460 "text": "OK"
7461 },
7462 "lint-snap-v2:summary": {7302 "lint-snap-v2:summary": {
7463 "manual_review": false,7303 "manual_review": false,
7464 "text": "OK"7304 "text": "OK"
@@ -7554,10 +7394,6 @@ pc.canonical_5.snap: pass
7554 "manual_review": false,7394 "manual_review": false,
7555 "text": "OK (override 'pc' for 'type: gadget')"7395 "text": "OK (override 'pc' for 'type: gadget')"
7556 },7396 },
7557 "lint-snap-v2:snap_type_valid": {
7558 "manual_review": false,
7559 "text": "OK"
7560 },
7561 "lint-snap-v2:summary": {7397 "lint-snap-v2:summary": {
7562 "manual_review": false,7398 "manual_review": false,
7563 "text": "OK"7399 "text": "OK"
@@ -7652,10 +7488,6 @@ pc.canonical_5.snap: pass
7652 "manual_review": false,7488 "manual_review": false,
7653 "text": "OK (override 'pc' for 'type: gadget')"7489 "text": "OK (override 'pc' for 'type: gadget')"
7654 },7490 },
7655 "lint-snap-v2:snap_type_valid": {
7656 "manual_review": false,
7657 "text": "OK"
7658 },
7659 "lint-snap-v2:summary": {7491 "lint-snap-v2:summary": {
7660 "manual_review": false,7492 "manual_review": false,
7661 "text": "OK"7493 "text": "OK"
@@ -8849,10 +8681,6 @@ quagga_1.0.20160315-alpha2-git.c6fadc4+_amd64.snap: pass
8849 "manual_review": false,8681 "manual_review": false,
8850 "text": "OK"8682 "text": "OK"
8851 },8683 },
8852 "lint-snap-v2:snap_type_valid": {
8853 "manual_review": false,
8854 "text": "OK"
8855 },
8856 "lint-snap-v2:summary": {8684 "lint-snap-v2:summary": {
8857 "manual_review": false,8685 "manual_review": false,
8858 "text": "OK"8686 "text": "OK"
@@ -10121,10 +9949,6 @@ quagga_1.0.20160315-alpha2-git.c6fadc4+_amd64.snap: pass
10121 "manual_review": false,9949 "manual_review": false,
10122 "text": "OK"9950 "text": "OK"
10123 },9951 },
10124 "lint-snap-v2:snap_type_valid": {
10125 "manual_review": false,
10126 "text": "OK"
10127 },
10128 "lint-snap-v2:summary": {9952 "lint-snap-v2:summary": {
10129 "manual_review": false,9953 "manual_review": false,
10130 "text": "OK"9954 "text": "OK"
@@ -10354,10 +10178,6 @@ snap-test-arch-all-warning_1_all.snap: FAIL
10354 "manual_review": false,10178 "manual_review": false,
10355 "text": "OK"10179 "text": "OK"
10356 },10180 },
10357 "lint-snap-v2:snap_type_valid": {
10358 "manual_review": false,
10359 "text": "OK"
10360 },
10361 "lint-snap-v2:summary": {10181 "lint-snap-v2:summary": {
10362 "manual_review": false,10182 "manual_review": false,
10363 "text": "summary is too short: 'my summary'"10183 "text": "summary is too short: 'my summary'"
@@ -10510,10 +10330,6 @@ snap-test-arch-all-warning_1_all.snap: FAIL
10510 "manual_review": false,10330 "manual_review": false,
10511 "text": "OK"10331 "text": "OK"
10512 },10332 },
10513 "lint-snap-v2:snap_type_valid": {
10514 "manual_review": false,
10515 "text": "OK"
10516 },
10517 "lint-snap-v2:summary": {10333 "lint-snap-v2:summary": {
10518 "manual_review": false,10334 "manual_review": false,
10519 "text": "summary is too short: 'my summary'"10335 "text": "summary is too short: 'my summary'"
@@ -10671,10 +10487,6 @@ snappy-debug_20.snap: pass
10671 "manual_review": false,10487 "manual_review": false,
10672 "text": "OK"10488 "text": "OK"
10673 },10489 },
10674 "lint-snap-v2:snap_type_valid": {
10675 "manual_review": false,
10676 "text": "OK"
10677 },
10678 "lint-snap-v2:summary": {10490 "lint-snap-v2:summary": {
10679 "manual_review": false,10491 "manual_review": false,
10680 "text": "OK"10492 "text": "OK"
@@ -10831,10 +10643,6 @@ snappy-debug_20.snap: pass
10831 "manual_review": false,10643 "manual_review": false,
10832 "text": "OK"10644 "text": "OK"
10833 },10645 },
10834 "lint-snap-v2:snap_type_valid": {
10835 "manual_review": false,
10836 "text": "OK"
10837 },
10838 "lint-snap-v2:summary": {10646 "lint-snap-v2:summary": {
10839 "manual_review": false,10647 "manual_review": false,
10840 "text": "OK"10648 "text": "OK"
@@ -11040,10 +10848,6 @@ snappy-test-iface-attribs_0.1_all.snap: pass
11040 "manual_review": false,10848 "manual_review": false,
11041 "text": "OK"10849 "text": "OK"
11042 },10850 },
11043 "lint-snap-v2:snap_type_valid": {
11044 "manual_review": false,
11045 "text": "OK"
11046 },
11047 "lint-snap-v2:summary": {10851 "lint-snap-v2:summary": {
11048 "manual_review": false,10852 "manual_review": false,
11049 "text": "summary is too short: 'This is a test snap'"10853 "text": "summary is too short: 'This is a test snap'"
@@ -11244,10 +11048,6 @@ snappy-test-iface-attribs_0.1_all.snap: pass
11244 "manual_review": false,11048 "manual_review": false,
11245 "text": "OK"11049 "text": "OK"
11246 },11050 },
11247 "lint-snap-v2:snap_type_valid": {
11248 "manual_review": false,
11249 "text": "OK"
11250 },
11251 "lint-snap-v2:summary": {11051 "lint-snap-v2:summary": {
11252 "manual_review": false,11052 "manual_review": false,
11253 "text": "summary is too short: 'This is a test snap'"11053 "text": "summary is too short: 'This is a test snap'"
@@ -13990,10 +13790,6 @@ test-all-app_1_all.snap: FAIL
13990 "manual_review": false,13790 "manual_review": false,
13991 "text": "OK"13791 "text": "OK"
13992 },13792 },
13993 "lint-snap-v2:snap_type_valid": {
13994 "manual_review": false,
13995 "text": "OK"
13996 },
13997 "lint-snap-v2:summary": {13793 "lint-snap-v2:summary": {
13998 "manual_review": false,13794 "manual_review": false,
13999 "text": "OK"13795 "text": "OK"
@@ -16955,10 +16751,6 @@ test-all-app_1_all.snap: FAIL
16955 "manual_review": false,16751 "manual_review": false,
16956 "text": "OK"16752 "text": "OK"
16957 },16753 },
16958 "lint-snap-v2:snap_type_valid": {
16959 "manual_review": false,
16960 "text": "OK"
16961 },
16962 "lint-snap-v2:summary": {16754 "lint-snap-v2:summary": {
16963 "manual_review": false,16755 "manual_review": false,
16964 "text": "OK"16756 "text": "OK"
@@ -17788,10 +17580,6 @@ test-all-core_1_all.snap: FAIL
17788 "manual_review": false,17580 "manual_review": false,
17789 "text": "OK"17581 "text": "OK"
17790 },17582 },
17791 "lint-snap-v2:snap_type_valid": {
17792 "manual_review": false,
17793 "text": "OK"
17794 },
17795 "lint-snap-v2:summary": {17583 "lint-snap-v2:summary": {
17796 "manual_review": false,17584 "manual_review": false,
17797 "text": "OK"17585 "text": "OK"
@@ -18336,10 +18124,6 @@ test-all-core_1_all.snap: FAIL
18336 "manual_review": false,18124 "manual_review": false,
18337 "text": "OK"18125 "text": "OK"
18338 },18126 },
18339 "lint-snap-v2:snap_type_valid": {
18340 "manual_review": false,
18341 "text": "OK"
18342 },
18343 "lint-snap-v2:summary": {18127 "lint-snap-v2:summary": {
18344 "manual_review": false,18128 "manual_review": false,
18345 "text": "OK"18129 "text": "OK"
@@ -18641,10 +18425,6 @@ test-all-gadget_3_all.snap: FAIL
18641 "manual_review": false,18425 "manual_review": false,
18642 "text": "OK"18426 "text": "OK"
18643 },18427 },
18644 "lint-snap-v2:snap_type_valid": {
18645 "manual_review": false,
18646 "text": "OK"
18647 },
18648 "lint-snap-v2:summary": {18428 "lint-snap-v2:summary": {
18649 "manual_review": false,18429 "manual_review": false,
18650 "text": "OK"18430 "text": "OK"
@@ -18937,10 +18717,6 @@ test-all-gadget_3_all.snap: FAIL
18937 "manual_review": false,18717 "manual_review": false,
18938 "text": "OK"18718 "text": "OK"
18939 },18719 },
18940 "lint-snap-v2:snap_type_valid": {
18941 "manual_review": false,
18942 "text": "OK"
18943 },
18944 "lint-snap-v2:summary": {18720 "lint-snap-v2:summary": {
18945 "manual_review": false,18721 "manual_review": false,
18946 "text": "OK"18722 "text": "OK"
@@ -19084,10 +18860,6 @@ test-app-devnull_1.0_all.snap: FAIL
19084 "manual_review": false,18860 "manual_review": false,
19085 "text": "OK"18861 "text": "OK"
19086 },18862 },
19087 "lint-snap-v2:snap_type_valid": {
19088 "manual_review": false,
19089 "text": "OK"
19090 },
19091 "lint-snap-v2:summary": {18863 "lint-snap-v2:summary": {
19092 "manual_review": false,18864 "manual_review": false,
19093 "text": "OK"18865 "text": "OK"
@@ -19237,10 +19009,6 @@ test-app-devnull_1.0_all.snap: FAIL
19237 "manual_review": false,19009 "manual_review": false,
19238 "text": "OK"19010 "text": "OK"
19239 },19011 },
19240 "lint-snap-v2:snap_type_valid": {
19241 "manual_review": false,
19242 "text": "OK"
19243 },
19244 "lint-snap-v2:summary": {19012 "lint-snap-v2:summary": {
19245 "manual_review": false,19013 "manual_review": false,
19246 "text": "OK"19014 "text": "OK"
@@ -19433,10 +19201,6 @@ test-bad-desktop-file-icon_1_all.snap: FAIL
19433 "manual_review": false,19201 "manual_review": false,
19434 "text": "OK"19202 "text": "OK"
19435 },19203 },
19436 "lint-snap-v2:snap_type_valid": {
19437 "manual_review": false,
19438 "text": "OK"
19439 },
19440 "lint-snap-v2:summary": {19204 "lint-snap-v2:summary": {
19441 "manual_review": false,19205 "manual_review": false,
19442 "text": "summary is too short: 'my summary'"19206 "text": "summary is too short: 'my summary'"
@@ -19618,10 +19382,6 @@ test-bad-desktop-file-icon_1_all.snap: FAIL
19618 "manual_review": false,19382 "manual_review": false,
19619 "text": "OK"19383 "text": "OK"
19620 },19384 },
19621 "lint-snap-v2:snap_type_valid": {
19622 "manual_review": false,
19623 "text": "OK"
19624 },
19625 "lint-snap-v2:summary": {19385 "lint-snap-v2:summary": {
19626 "manual_review": false,19386 "manual_review": false,
19627 "text": "summary is too short: 'my summary'"19387 "text": "summary is too short: 'my summary'"
@@ -19880,10 +19640,6 @@ test-bad-unicode_0_all.snap: FAIL
19880 "manual_review": false,19640 "manual_review": false,
19881 "text": "OK"19641 "text": "OK"
19882 },19642 },
19883 "lint-snap-v2:snap_type_valid": {
19884 "manual_review": false,
19885 "text": "OK"
19886 },
19887 "lint-snap-v2:summary": {19643 "lint-snap-v2:summary": {
19888 "manual_review": false,19644 "manual_review": false,
19889 "text": "summary is too short: 'invalid \u200b'"19645 "text": "summary is too short: 'invalid \u200b'"
@@ -20060,10 +19816,6 @@ test-bad-unicode_0_all.snap: FAIL
20060 "manual_review": false,19816 "manual_review": false,
20061 "text": "OK"19817 "text": "OK"
20062 },19818 },
20063 "lint-snap-v2:snap_type_valid": {
20064 "manual_review": false,
20065 "text": "OK"
20066 },
20067 "lint-snap-v2:summary": {19819 "lint-snap-v2:summary": {
20068 "manual_review": false,19820 "manual_review": false,
20069 "text": "summary is too short: 'invalid \u200b'"19821 "text": "summary is too short: 'invalid \u200b'"
@@ -20195,10 +19947,6 @@ test-base-devnull_1.0_all.snap: FAIL
20195 "manual_review": false,19947 "manual_review": false,
20196 "text": "OK"19948 "text": "OK"
20197 },19949 },
20198 "lint-snap-v2:snap_type_valid": {
20199 "manual_review": false,
20200 "text": "OK"
20201 },
20202 "lint-snap-v2:summary": {19950 "lint-snap-v2:summary": {
20203 "manual_review": false,19951 "manual_review": false,
20204 "text": "OK"19952 "text": "OK"
@@ -20304,10 +20052,6 @@ test-base-devnull_1.0_all.snap: FAIL
20304 "manual_review": false,20052 "manual_review": false,
20305 "text": "OK"20053 "text": "OK"
20306 },20054 },
20307 "lint-snap-v2:snap_type_valid": {
20308 "manual_review": false,
20309 "text": "OK"
20310 },
20311 "lint-snap-v2:summary": {20055 "lint-snap-v2:summary": {
20312 "manual_review": false,20056 "manual_review": false,
20313 "text": "OK"20057 "text": "OK"
@@ -20462,10 +20206,6 @@ test-base-disallowed_0_all.snap: FAIL
20462 "manual_review": false,20206 "manual_review": false,
20463 "text": "OK"20207 "text": "OK"
20464 },20208 },
20465 "lint-snap-v2:snap_type_valid": {
20466 "manual_review": false,
20467 "text": "OK"
20468 },
20469 "lint-snap-v2:summary": {20209 "lint-snap-v2:summary": {
20470 "manual_review": false,20210 "manual_review": false,
20471 "text": "summary is too short: 'my summary'"20211 "text": "summary is too short: 'my summary'"
@@ -20626,10 +20366,6 @@ test-base-disallowed_0_all.snap: FAIL
20626 "manual_review": false,20366 "manual_review": false,
20627 "text": "OK"20367 "text": "OK"
20628 },20368 },
20629 "lint-snap-v2:snap_type_valid": {
20630 "manual_review": false,
20631 "text": "OK"
20632 },
20633 "lint-snap-v2:summary": {20369 "lint-snap-v2:summary": {
20634 "manual_review": false,20370 "manual_review": false,
20635 "text": "summary is too short: 'my summary'"20371 "text": "summary is too short: 'my summary'"
@@ -20757,10 +20493,6 @@ test-base-missing-mountpoint_1.0_all.snap: FAIL
20757 "manual_review": false,20493 "manual_review": false,
20758 "text": "OK"20494 "text": "OK"
20759 },20495 },
20760 "lint-snap-v2:snap_type_valid": {
20761 "manual_review": false,
20762 "text": "OK"
20763 },
20764 "lint-snap-v2:summary": {20496 "lint-snap-v2:summary": {
20765 "manual_review": false,20497 "manual_review": false,
20766 "text": "OK"20498 "text": "OK"
@@ -20861,10 +20593,6 @@ test-base-missing-mountpoint_1.0_all.snap: FAIL
20861 "manual_review": false,20593 "manual_review": false,
20862 "text": "OK"20594 "text": "OK"
20863 },20595 },
20864 "lint-snap-v2:snap_type_valid": {
20865 "manual_review": false,
20866 "text": "OK"
20867 },
20868 "lint-snap-v2:summary": {20596 "lint-snap-v2:summary": {
20869 "manual_review": false,20597 "manual_review": false,
20870 "text": "OK"20598 "text": "OK"
@@ -21060,10 +20788,6 @@ test-base-slots-plugs_1.0_all.snap: FAIL
21060 "manual_review": false,20788 "manual_review": false,
21061 "text": "OK"20789 "text": "OK"
21062 },20790 },
21063 "lint-snap-v2:snap_type_valid": {
21064 "manual_review": false,
21065 "text": "OK"
21066 },
21067 "lint-snap-v2:summary": {20791 "lint-snap-v2:summary": {
21068 "manual_review": false,20792 "manual_review": false,
21069 "text": "OK"20793 "text": "OK"
@@ -21258,10 +20982,6 @@ test-base-slots-plugs_1.0_all.snap: FAIL
21258 "manual_review": false,20982 "manual_review": false,
21259 "text": "OK"20983 "text": "OK"
21260 },20984 },
21261 "lint-snap-v2:snap_type_valid": {
21262 "manual_review": false,
21263 "text": "OK"
21264 },
21265 "lint-snap-v2:summary": {20985 "lint-snap-v2:summary": {
21266 "manual_review": false,20986 "manual_review": false,
21267 "text": "OK"20987 "text": "OK"
@@ -21430,10 +21150,6 @@ test-check-notices-esm-apps_0.1_amd64.snap: pass
21430 "manual_review": false,21150 "manual_review": false,
21431 "text": "OK"21151 "text": "OK"
21432 },21152 },
21433 "lint-snap-v2:snap_type_valid": {
21434 "manual_review": false,
21435 "text": "OK"
21436 },
21437 "lint-snap-v2:summary": {21153 "lint-snap-v2:summary": {
21438 "manual_review": false,21154 "manual_review": false,
21439 "text": "OK"21155 "text": "OK"
@@ -21593,10 +21309,6 @@ test-check-notices-esm-apps_0.1_amd64.snap: pass
21593 "manual_review": false,21309 "manual_review": false,
21594 "text": "OK"21310 "text": "OK"
21595 },21311 },
21596 "lint-snap-v2:snap_type_valid": {
21597 "manual_review": false,
21598 "text": "OK"
21599 },
21600 "lint-snap-v2:summary": {21312 "lint-snap-v2:summary": {
21601 "manual_review": false,21313 "manual_review": false,
21602 "text": "OK"21314 "text": "OK"
@@ -21761,10 +21473,6 @@ test-check-notices-needed_0.1_amd64.snap: pass
21761 "manual_review": false,21473 "manual_review": false,
21762 "text": "OK"21474 "text": "OK"
21763 },21475 },
21764 "lint-snap-v2:snap_type_valid": {
21765 "manual_review": false,
21766 "text": "OK"
21767 },
21768 "lint-snap-v2:summary": {21476 "lint-snap-v2:summary": {
21769 "manual_review": false,21477 "manual_review": false,
21770 "text": "OK"21478 "text": "OK"
@@ -21924,10 +21632,6 @@ test-check-notices-needed_0.1_amd64.snap: pass
21924 "manual_review": false,21632 "manual_review": false,
21925 "text": "OK"21633 "text": "OK"
21926 },21634 },
21927 "lint-snap-v2:snap_type_valid": {
21928 "manual_review": false,
21929 "text": "OK"
21930 },
21931 "lint-snap-v2:summary": {21635 "lint-snap-v2:summary": {
21932 "manual_review": false,21636 "manual_review": false,
21933 "text": "OK"21637 "text": "OK"
@@ -22101,10 +21805,6 @@ test-check-notices-primed-stage-packages-needed_0.1_amd64.snap: FAIL
22101 "manual_review": false,21805 "manual_review": false,
22102 "text": "OK"21806 "text": "OK"
22103 },21807 },
22104 "lint-snap-v2:snap_type_valid": {
22105 "manual_review": false,
22106 "text": "OK"
22107 },
22108 "lint-snap-v2:summary": {21808 "lint-snap-v2:summary": {
22109 "manual_review": false,21809 "manual_review": false,
22110 "text": "OK"21810 "text": "OK"
@@ -22269,10 +21969,6 @@ test-check-notices-primed-stage-packages-needed_0.1_amd64.snap: FAIL
22269 "manual_review": false,21969 "manual_review": false,
22270 "text": "OK"21970 "text": "OK"
22271 },21971 },
22272 "lint-snap-v2:snap_type_valid": {
22273 "manual_review": false,
22274 "text": "OK"
22275 },
22276 "lint-snap-v2:summary": {21972 "lint-snap-v2:summary": {
22277 "manual_review": false,21973 "manual_review": false,
22278 "text": "OK"21974 "text": "OK"
@@ -22446,10 +22142,6 @@ test-check-notices-primed-stage-packages-needed_0.2_amd64.snap: FAIL
22446 "manual_review": false,22142 "manual_review": false,
22447 "text": "OK"22143 "text": "OK"
22448 },22144 },
22449 "lint-snap-v2:snap_type_valid": {
22450 "manual_review": false,
22451 "text": "OK"
22452 },
22453 "lint-snap-v2:summary": {22145 "lint-snap-v2:summary": {
22454 "manual_review": false,22146 "manual_review": false,
22455 "text": "OK"22147 "text": "OK"
@@ -22614,10 +22306,6 @@ test-check-notices-primed-stage-packages-needed_0.2_amd64.snap: FAIL
22614 "manual_review": false,22306 "manual_review": false,
22615 "text": "OK"22307 "text": "OK"
22616 },22308 },
22617 "lint-snap-v2:snap_type_valid": {
22618 "manual_review": false,
22619 "text": "OK"
22620 },
22621 "lint-snap-v2:summary": {22309 "lint-snap-v2:summary": {
22622 "manual_review": false,22310 "manual_review": false,
22623 "text": "OK"22311 "text": "OK"
@@ -22782,10 +22470,6 @@ test-check-notices-primed-stage-packages_0.1_amd64.snap: pass
22782 "manual_review": false,22470 "manual_review": false,
22783 "text": "OK"22471 "text": "OK"
22784 },22472 },
22785 "lint-snap-v2:snap_type_valid": {
22786 "manual_review": false,
22787 "text": "OK"
22788 },
22789 "lint-snap-v2:summary": {22473 "lint-snap-v2:summary": {
22790 "manual_review": false,22474 "manual_review": false,
22791 "text": "OK"22475 "text": "OK"
@@ -22945,10 +22629,6 @@ test-check-notices-primed-stage-packages_0.1_amd64.snap: pass
22945 "manual_review": false,22629 "manual_review": false,
22946 "text": "OK"22630 "text": "OK"
22947 },22631 },
22948 "lint-snap-v2:snap_type_valid": {
22949 "manual_review": false,
22950 "text": "OK"
22951 },
22952 "lint-snap-v2:summary": {22632 "lint-snap-v2:summary": {
22953 "manual_review": false,22633 "manual_review": false,
22954 "text": "OK"22634 "text": "OK"
@@ -23113,10 +22793,6 @@ test-check-notices_0.1_amd64.snap: pass
23113 "manual_review": false,22793 "manual_review": false,
23114 "text": "OK"22794 "text": "OK"
23115 },22795 },
23116 "lint-snap-v2:snap_type_valid": {
23117 "manual_review": false,
23118 "text": "OK"
23119 },
23120 "lint-snap-v2:summary": {22796 "lint-snap-v2:summary": {
23121 "manual_review": false,22797 "manual_review": false,
23122 "text": "OK"22798 "text": "OK"
@@ -23276,10 +22952,6 @@ test-check-notices_0.1_amd64.snap: pass
23276 "manual_review": false,22952 "manual_review": false,
23277 "text": "OK"22953 "text": "OK"
23278 },22954 },
23279 "lint-snap-v2:snap_type_valid": {
23280 "manual_review": false,
23281 "text": "OK"
23282 },
23283 "lint-snap-v2:summary": {22955 "lint-snap-v2:summary": {
23284 "manual_review": false,22956 "manual_review": false,
23285 "text": "OK"22957 "text": "OK"
@@ -23471,10 +23143,6 @@ test-classic_0_all.snap: FAIL
23471 "manual_review": false,23143 "manual_review": false,
23472 "text": "OK"23144 "text": "OK"
23473 },23145 },
23474 "lint-snap-v2:snap_type_valid": {
23475 "manual_review": false,
23476 "text": "OK"
23477 },
23478 "lint-snap-v2:summary": {23146 "lint-snap-v2:summary": {
23479 "manual_review": false,23147 "manual_review": false,
23480 "text": "summary is too short: 'my summary'"23148 "text": "summary is too short: 'my summary'"
@@ -23664,10 +23332,6 @@ test-classic_0_all.snap: FAIL
23664 "manual_review": false,23332 "manual_review": false,
23665 "text": "OK"23333 "text": "OK"
23666 },23334 },
23667 "lint-snap-v2:snap_type_valid": {
23668 "manual_review": false,
23669 "text": "OK"
23670 },
23671 "lint-snap-v2:summary": {23335 "lint-snap-v2:summary": {
23672 "manual_review": false,23336 "manual_review": false,
23673 "text": "summary is too short: 'my summary'"23337 "text": "summary is too short: 'my summary'"
@@ -23852,10 +23516,6 @@ test-command-with-args_0_all.snap: pass
23852 "manual_review": false,23516 "manual_review": false,
23853 "text": "OK"23517 "text": "OK"
23854 },23518 },
23855 "lint-snap-v2:snap_type_valid": {
23856 "manual_review": false,
23857 "text": "OK"
23858 },
23859 "lint-snap-v2:summary": {23519 "lint-snap-v2:summary": {
23860 "manual_review": false,23520 "manual_review": false,
23861 "text": "summary is too short: 'my summary'"23521 "text": "summary is too short: 'my summary'"
@@ -24035,10 +23695,6 @@ test-command-with-args_0_all.snap: pass
24035 "manual_review": false,23695 "manual_review": false,
24036 "text": "OK"23696 "text": "OK"
24037 },23697 },
24038 "lint-snap-v2:snap_type_valid": {
24039 "manual_review": false,
24040 "text": "OK"
24041 },
24042 "lint-snap-v2:summary": {23698 "lint-snap-v2:summary": {
24043 "manual_review": false,23699 "manual_review": false,
24044 "text": "summary is too short: 'my summary'"23700 "text": "summary is too short: 'my summary'"
@@ -24235,10 +23891,6 @@ test-common-id_0_all.snap: pass
24235 "manual_review": false,23891 "manual_review": false,
24236 "text": "OK"23892 "text": "OK"
24237 },23893 },
24238 "lint-snap-v2:snap_type_valid": {
24239 "manual_review": false,
24240 "text": "OK"
24241 },
24242 "lint-snap-v2:summary": {23894 "lint-snap-v2:summary": {
24243 "manual_review": false,23895 "manual_review": false,
24244 "text": "summary is too short: 'my summary'"23896 "text": "summary is too short: 'my summary'"
@@ -24430,10 +24082,6 @@ test-common-id_0_all.snap: pass
24430 "manual_review": false,24082 "manual_review": false,
24431 "text": "OK"24083 "text": "OK"
24432 },24084 },
24433 "lint-snap-v2:snap_type_valid": {
24434 "manual_review": false,
24435 "text": "OK"
24436 },
24437 "lint-snap-v2:summary": {24085 "lint-snap-v2:summary": {
24438 "manual_review": false,24086 "manual_review": false,
24439 "text": "summary is too short: 'my summary'"24087 "text": "summary is too short: 'my summary'"
@@ -24639,10 +24287,6 @@ test-completion_1.0_all.snap: pass
24639 "manual_review": false,24287 "manual_review": false,
24640 "text": "OK"24288 "text": "OK"
24641 },24289 },
24642 "lint-snap-v2:snap_type_valid": {
24643 "manual_review": false,
24644 "text": "OK"
24645 },
24646 "lint-snap-v2:summary_present": {24290 "lint-snap-v2:summary_present": {
24647 "manual_review": false,24291 "manual_review": false,
24648 "text": "OK (optional summary field not specified)"24292 "text": "OK (optional summary field not specified)"
@@ -24839,10 +24483,6 @@ test-completion_1.0_all.snap: pass
24839 "manual_review": false,24483 "manual_review": false,
24840 "text": "OK"24484 "text": "OK"
24841 },24485 },
24842 "lint-snap-v2:snap_type_valid": {
24843 "manual_review": false,
24844 "text": "OK"
24845 },
24846 "lint-snap-v2:summary_present": {24486 "lint-snap-v2:summary_present": {
24847 "manual_review": false,24487 "manual_review": false,
24848 "text": "OK (optional summary field not specified)"24488 "text": "OK (optional summary field not specified)"
@@ -25172,10 +24812,6 @@ test-content_0.1_all.snap: pass
25172 "manual_review": false,24812 "manual_review": false,
25173 "text": "OK"24813 "text": "OK"
25174 },24814 },
25175 "lint-snap-v2:snap_type_valid": {
25176 "manual_review": false,
25177 "text": "OK"
25178 },
25179 "lint-snap-v2:summary": {24815 "lint-snap-v2:summary": {
25180 "manual_review": false,24816 "manual_review": false,
25181 "text": "OK"24817 "text": "OK"
@@ -25500,10 +25136,6 @@ test-content_0.1_all.snap: pass
25500 "manual_review": false,25136 "manual_review": false,
25501 "text": "OK"25137 "text": "OK"
25502 },25138 },
25503 "lint-snap-v2:snap_type_valid": {
25504 "manual_review": false,
25505 "text": "OK"
25506 },
25507 "lint-snap-v2:summary": {25139 "lint-snap-v2:summary": {
25508 "manual_review": false,25140 "manual_review": false,
25509 "text": "OK"25141 "text": "OK"
@@ -25640,10 +25272,6 @@ test-core-with-primed-staged_16-2.37.2_amd64.snap: FAIL
25640 "manual_review": false,25272 "manual_review": false,
25641 "text": "OK"25273 "text": "OK"
25642 },25274 },
25643 "lint-snap-v2:snap_type_valid": {
25644 "manual_review": false,
25645 "text": "OK"
25646 },
25647 "lint-snap-v2:summary": {25275 "lint-snap-v2:summary": {
25648 "manual_review": false,25276 "manual_review": false,
25649 "text": "OK"25277 "text": "OK"
@@ -25755,10 +25383,6 @@ test-core-with-primed-staged_16-2.37.2_amd64.snap: FAIL
25755 "manual_review": false,25383 "manual_review": false,
25756 "text": "OK"25384 "text": "OK"
25757 },25385 },
25758 "lint-snap-v2:snap_type_valid": {
25759 "manual_review": false,
25760 "text": "OK"
25761 },
25762 "lint-snap-v2:summary": {25386 "lint-snap-v2:summary": {
25763 "manual_review": false,25387 "manual_review": false,
25764 "text": "OK"25388 "text": "OK"
@@ -25879,10 +25503,6 @@ test-core_16-2.37.2_amd64.snap: FAIL
25879 "manual_review": false,25503 "manual_review": false,
25880 "text": "OK"25504 "text": "OK"
25881 },25505 },
25882 "lint-snap-v2:snap_type_valid": {
25883 "manual_review": false,
25884 "text": "OK"
25885 },
25886 "lint-snap-v2:summary": {25506 "lint-snap-v2:summary": {
25887 "manual_review": false,25507 "manual_review": false,
25888 "text": "OK"25508 "text": "OK"
@@ -25994,10 +25614,6 @@ test-core_16-2.37.2_amd64.snap: FAIL
25994 "manual_review": false,25614 "manual_review": false,
25995 "text": "OK"25615 "text": "OK"
25996 },25616 },
25997 "lint-snap-v2:snap_type_valid": {
25998 "manual_review": false,
25999 "text": "OK"
26000 },
26001 "lint-snap-v2:summary": {25617 "lint-snap-v2:summary": {
26002 "manual_review": false,25618 "manual_review": false,
26003 "text": "OK"25619 "text": "OK"
@@ -26191,10 +25807,6 @@ test-desktop-file_1_all.snap: pass
26191 "manual_review": false,25807 "manual_review": false,
26192 "text": "OK"25808 "text": "OK"
26193 },25809 },
26194 "lint-snap-v2:snap_type_valid": {
26195 "manual_review": false,
26196 "text": "OK"
26197 },
26198 "lint-snap-v2:summary": {25810 "lint-snap-v2:summary": {
26199 "manual_review": false,25811 "manual_review": false,
26200 "text": "summary is too short: 'my summary'"25812 "text": "summary is too short: 'my summary'"
@@ -26399,10 +26011,6 @@ test-desktop-file_1_all.snap: pass
26399 "manual_review": false,26011 "manual_review": false,
26400 "text": "OK"26012 "text": "OK"
26401 },26013 },
26402 "lint-snap-v2:snap_type_valid": {
26403 "manual_review": false,
26404 "text": "OK"
26405 },
26406 "lint-snap-v2:summary": {26014 "lint-snap-v2:summary": {
26407 "manual_review": false,26015 "manual_review": false,
26408 "text": "summary is too short: 'my summary'"26016 "text": "summary is too short: 'my summary'"
@@ -26568,10 +26176,6 @@ test-dir-perms_0_amd64.snap: FAIL
26568 "manual_review": false,26176 "manual_review": false,
26569 "text": "OK"26177 "text": "OK"
26570 },26178 },
26571 "lint-snap-v2:snap_type_valid": {
26572 "manual_review": false,
26573 "text": "OK"
26574 },
26575 "lint-snap-v2:summary": {26179 "lint-snap-v2:summary": {
26576 "manual_review": false,26180 "manual_review": false,
26577 "text": "summary is too short: 'my summary'"26181 "text": "summary is too short: 'my summary'"
@@ -26725,10 +26329,6 @@ test-dir-perms_0_amd64.snap: FAIL
26725 "manual_review": false,26329 "manual_review": false,
26726 "text": "OK"26330 "text": "OK"
26727 },26331 },
26728 "lint-snap-v2:snap_type_valid": {
26729 "manual_review": false,
26730 "text": "OK"
26731 },
26732 "lint-snap-v2:summary": {26332 "lint-snap-v2:summary": {
26733 "manual_review": false,26333 "manual_review": false,
26734 "text": "summary is too short: 'my summary'"26334 "text": "summary is too short: 'my summary'"
@@ -26867,10 +26467,6 @@ test-dpkg-list-app_1.0_amd64.snap: pass
26867 "manual_review": false,26467 "manual_review": false,
26868 "text": "OK"26468 "text": "OK"
26869 },26469 },
26870 "lint-snap-v2:snap_type_valid": {
26871 "manual_review": false,
26872 "text": "OK"
26873 },
26874 "lint-snap-v2:summary": {26470 "lint-snap-v2:summary": {
26875 "manual_review": false,26471 "manual_review": false,
26876 "text": "OK"26472 "text": "OK"
@@ -26990,10 +26586,6 @@ test-dpkg-list-app_1.0_amd64.snap: pass
26990 "manual_review": false,26586 "manual_review": false,
26991 "text": "OK"26587 "text": "OK"
26992 },26588 },
26993 "lint-snap-v2:snap_type_valid": {
26994 "manual_review": false,
26995 "text": "OK"
26996 },
26997 "lint-snap-v2:summary": {26589 "lint-snap-v2:summary": {
26998 "manual_review": false,26590 "manual_review": false,
26999 "text": "OK"26591 "text": "OK"
@@ -27246,10 +26838,6 @@ test-env_0.1_all.snap: pass
27246 "manual_review": false,26838 "manual_review": false,
27247 "text": "OK"26839 "text": "OK"
27248 },26840 },
27249 "lint-snap-v2:snap_type_valid": {
27250 "manual_review": false,
27251 "text": "OK"
27252 },
27253 "lint-snap-v2:summary": {26841 "lint-snap-v2:summary": {
27254 "manual_review": false,26842 "manual_review": false,
27255 "text": "OK"26843 "text": "OK"
@@ -27525,10 +27113,6 @@ test-env_0.1_all.snap: pass
27525 "manual_review": false,27113 "manual_review": false,
27526 "text": "OK"27114 "text": "OK"
27527 },27115 },
27528 "lint-snap-v2:snap_type_valid": {
27529 "manual_review": false,
27530 "text": "OK"
27531 },
27532 "lint-snap-v2:summary": {27116 "lint-snap-v2:summary": {
27533 "manual_review": false,27117 "manual_review": false,
27534 "text": "OK"27118 "text": "OK"
@@ -27707,10 +27291,6 @@ test-execstack_0_amd64.snap: FAIL
27707 "manual_review": false,27291 "manual_review": false,
27708 "text": "OK"27292 "text": "OK"
27709 },27293 },
27710 "lint-snap-v2:snap_type_valid": {
27711 "manual_review": false,
27712 "text": "OK"
27713 },
27714 "lint-snap-v2:summary": {27294 "lint-snap-v2:summary": {
27715 "manual_review": false,27295 "manual_review": false,
27716 "text": "summary is too short: 'my summary'"27296 "text": "summary is too short: 'my summary'"
@@ -27863,10 +27443,6 @@ test-execstack_0_amd64.snap: FAIL
27863 "manual_review": false,27443 "manual_review": false,
27864 "text": "OK"27444 "text": "OK"
27865 },27445 },
27866 "lint-snap-v2:snap_type_valid": {
27867 "manual_review": false,
27868 "text": "OK"
27869 },
27870 "lint-snap-v2:summary": {27446 "lint-snap-v2:summary": {
27871 "manual_review": false,27447 "manual_review": false,
27872 "text": "summary is too short: 'my summary'"27448 "text": "summary is too short: 'my summary'"
@@ -28019,10 +27595,6 @@ test-grade-and-confinement_0.1_all.snap: pass
28019 "manual_review": false,27595 "manual_review": false,
28020 "text": "OK"27596 "text": "OK"
28021 },27597 },
28022 "lint-snap-v2:snap_type_valid": {
28023 "manual_review": false,
28024 "text": "OK"
28025 },
28026 "lint-snap-v2:summary": {27598 "lint-snap-v2:summary": {
28027 "manual_review": false,27599 "manual_review": false,
28028 "text": "OK"27600 "text": "OK"
@@ -28174,10 +27746,6 @@ test-grade-and-confinement_0.1_all.snap: pass
28174 "manual_review": false,27746 "manual_review": false,
28175 "text": "OK"27747 "text": "OK"
28176 },27748 },
28177 "lint-snap-v2:snap_type_valid": {
28178 "manual_review": false,
28179 "text": "OK"
28180 },
28181 "lint-snap-v2:summary": {27749 "lint-snap-v2:summary": {
28182 "manual_review": false,27750 "manual_review": false,
28183 "text": "OK"27751 "text": "OK"
@@ -28330,10 +27898,6 @@ test-gzip_1.snap: FAIL
28330 "manual_review": false,27898 "manual_review": false,
28331 "text": "OK"27899 "text": "OK"
28332 },27900 },
28333 "lint-snap-v2:snap_type_valid": {
28334 "manual_review": false,
28335 "text": "OK"
28336 },
28337 "lint-snap-v2:summary": {27901 "lint-snap-v2:summary": {
28338 "manual_review": false,27902 "manual_review": false,
28339 "text": "OK"27903 "text": "OK"
@@ -28478,10 +28042,6 @@ test-gzip_1.snap: FAIL
28478 "manual_review": false,28042 "manual_review": false,
28479 "text": "OK"28043 "text": "OK"
28480 },28044 },
28481 "lint-snap-v2:snap_type_valid": {
28482 "manual_review": false,
28483 "text": "OK"
28484 },
28485 "lint-snap-v2:summary": {28045 "lint-snap-v2:summary": {
28486 "manual_review": false,28046 "manual_review": false,
28487 "text": "OK"28047 "text": "OK"
@@ -28903,10 +28463,6 @@ test-hello-dbus_2_amd64.snap: FAIL
28903 "manual_review": false,28463 "manual_review": false,
28904 "text": "OK"28464 "text": "OK"
28905 },28465 },
28906 "lint-snap-v2:snap_type_valid": {
28907 "manual_review": false,
28908 "text": "OK"
28909 },
28910 "lint-snap-v2:summary": {28466 "lint-snap-v2:summary": {
28911 "manual_review": false,28467 "manual_review": false,
28912 "text": "OK"28468 "text": "OK"
@@ -29328,10 +28884,6 @@ test-hello-dbus_2_amd64.snap: FAIL
29328 "manual_review": false,28884 "manual_review": false,
29329 "text": "OK"28885 "text": "OK"
29330 },28886 },
29331 "lint-snap-v2:snap_type_valid": {
29332 "manual_review": false,
29333 "text": "OK"
29334 },
29335 "lint-snap-v2:summary": {28887 "lint-snap-v2:summary": {
29336 "manual_review": false,28888 "manual_review": false,
29337 "text": "OK"28889 "text": "OK"
@@ -29566,10 +29118,6 @@ test-home-read-attrib_0.1_amd64.snap: FAIL
29566 "manual_review": false,29118 "manual_review": false,
29567 "text": "OK"29119 "text": "OK"
29568 },29120 },
29569 "lint-snap-v2:snap_type_valid": {
29570 "manual_review": false,
29571 "text": "OK"
29572 },
29573 "lint-snap-v2:summary": {29121 "lint-snap-v2:summary": {
29574 "manual_review": false,29122 "manual_review": false,
29575 "text": "summary is too short: 'This is a test snap'"29123 "text": "summary is too short: 'This is a test snap'"
@@ -29783,10 +29331,6 @@ test-home-read-attrib_0.1_amd64.snap: FAIL
29783 "manual_review": false,29331 "manual_review": false,
29784 "text": "OK"29332 "text": "OK"
29785 },29333 },
29786 "lint-snap-v2:snap_type_valid": {
29787 "manual_review": false,
29788 "text": "OK"
29789 },
29790 "lint-snap-v2:summary": {29334 "lint-snap-v2:summary": {
29791 "manual_review": false,29335 "manual_review": false,
29792 "text": "summary is too short: 'This is a test snap'"29336 "text": "summary is too short: 'This is a test snap'"
@@ -30196,10 +29740,6 @@ test-hooks_0_all.snap: pass
30196 "manual_review": false,29740 "manual_review": false,
30197 "text": "OK"29741 "text": "OK"
30198 },29742 },
30199 "lint-snap-v2:snap_type_valid": {
30200 "manual_review": false,
30201 "text": "OK"
30202 },
30203 "lint-snap-v2:summary": {29743 "lint-snap-v2:summary": {
30204 "manual_review": false,29744 "manual_review": false,
30205 "text": "OK"29745 "text": "OK"
@@ -30608,10 +30148,6 @@ test-hooks_0_all.snap: pass
30608 "manual_review": false,30148 "manual_review": false,
30609 "text": "OK"30149 "text": "OK"
30610 },30150 },
30611 "lint-snap-v2:snap_type_valid": {
30612 "manual_review": false,
30613 "text": "OK"
30614 },
30615 "lint-snap-v2:summary": {30151 "lint-snap-v2:summary": {
30616 "manual_review": false,30152 "manual_review": false,
30617 "text": "OK"30153 "text": "OK"
@@ -30832,10 +30368,6 @@ test-install-stop-and-refresh-modes_0.1_all.snap: pass
30832 "manual_review": false,30368 "manual_review": false,
30833 "text": "OK"30369 "text": "OK"
30834 },30370 },
30835 "lint-snap-v2:snap_type_valid": {
30836 "manual_review": false,
30837 "text": "OK"
30838 },
30839 "lint-snap-v2:stop-mode:sigterm": {30371 "lint-snap-v2:stop-mode:sigterm": {
30840 "manual_review": false,30372 "manual_review": false,
30841 "text": "OK"30373 "text": "OK"
@@ -31059,10 +30591,6 @@ test-install-stop-and-refresh-modes_0.1_all.snap: pass
31059 "manual_review": false,30591 "manual_review": false,
31060 "text": "OK"30592 "text": "OK"
31061 },30593 },
31062 "lint-snap-v2:snap_type_valid": {
31063 "manual_review": false,
31064 "text": "OK"
31065 },
31066 "lint-snap-v2:stop-mode:sigterm": {30594 "lint-snap-v2:stop-mode:sigterm": {
31067 "manual_review": false,30595 "manual_review": false,
31068 "text": "OK"30596 "text": "OK"
@@ -31207,10 +30735,6 @@ test-link_0.1_all.snap: pass
31207 "manual_review": false,30735 "manual_review": false,
31208 "text": "OK"30736 "text": "OK"
31209 },30737 },
31210 "lint-snap-v2:snap_type_valid": {
31211 "manual_review": false,
31212 "text": "OK"
31213 },
31214 "lint-snap-v2:summary": {30738 "lint-snap-v2:summary": {
31215 "manual_review": false,30739 "manual_review": false,
31216 "text": "OK"30740 "text": "OK"
@@ -31322,10 +30846,6 @@ test-link_0.1_all.snap: pass
31322 "manual_review": false,30846 "manual_review": false,
31323 "text": "OK"30847 "text": "OK"
31324 },30848 },
31325 "lint-snap-v2:snap_type_valid": {
31326 "manual_review": false,
31327 "text": "OK"
31328 },
31329 "lint-snap-v2:summary": {30849 "lint-snap-v2:summary": {
31330 "manual_review": false,30850 "manual_review": false,
31331 "text": "OK"30851 "text": "OK"
@@ -31458,10 +30978,6 @@ test-lzo_1.snap: pass
31458 "manual_review": false,30978 "manual_review": false,
31459 "text": "OK"30979 "text": "OK"
31460 },30980 },
31461 "lint-snap-v2:snap_type_valid": {
31462 "manual_review": false,
31463 "text": "OK"
31464 },
31465 "lint-snap-v2:summary": {30981 "lint-snap-v2:summary": {
31466 "manual_review": false,30982 "manual_review": false,
31467 "text": "OK"30983 "text": "OK"
@@ -31605,10 +31121,6 @@ test-lzo_1.snap: pass
31605 "manual_review": false,31121 "manual_review": false,
31606 "text": "OK"31122 "text": "OK"
31607 },31123 },
31608 "lint-snap-v2:snap_type_valid": {
31609 "manual_review": false,
31610 "text": "OK"
31611 },
31612 "lint-snap-v2:summary": {31124 "lint-snap-v2:summary": {
31613 "manual_review": false,31125 "manual_review": false,
31614 "text": "OK"31126 "text": "OK"
@@ -31859,10 +31371,6 @@ test-mir-xwayland_0_all.snap: FAIL
31859 "manual_review": false,31371 "manual_review": false,
31860 "text": "OK"31372 "text": "OK"
31861 },31373 },
31862 "lint-snap-v2:snap_type_valid": {
31863 "manual_review": false,
31864 "text": "OK"
31865 },
31866 "lint-snap-v2:summary": {31374 "lint-snap-v2:summary": {
31867 "manual_review": false,31375 "manual_review": false,
31868 "text": "summary is too short: 'my summary'"31376 "text": "summary is too short: 'my summary'"
@@ -32108,10 +31616,6 @@ test-mir-xwayland_0_all.snap: FAIL
32108 "manual_review": false,31616 "manual_review": false,
32109 "text": "OK"31617 "text": "OK"
32110 },31618 },
32111 "lint-snap-v2:snap_type_valid": {
32112 "manual_review": false,
32113 "text": "OK"
32114 },
32115 "lint-snap-v2:summary": {31619 "lint-snap-v2:summary": {
32116 "manual_review": false,31620 "manual_review": false,
32117 "text": "summary is too short: 'my summary'"31621 "text": "summary is too short: 'my summary'"
@@ -32343,10 +31847,6 @@ test-missing-required-attributes_0_all.snap: FAIL
32343 "manual_review": false,31847 "manual_review": false,
32344 "text": "OK"31848 "text": "OK"
32345 },31849 },
32346 "lint-snap-v2:snap_type_valid": {
32347 "manual_review": false,
32348 "text": "OK"
32349 },
32350 "lint-snap-v2:summary": {31850 "lint-snap-v2:summary": {
32351 "manual_review": false,31851 "manual_review": false,
32352 "text": "summary is too short: 'my summary'"31852 "text": "summary is too short: 'my summary'"
@@ -32561,10 +32061,6 @@ test-missing-required-attributes_0_all.snap: FAIL
32561 "manual_review": false,32061 "manual_review": false,
32562 "text": "OK"32062 "text": "OK"
32563 },32063 },
32564 "lint-snap-v2:snap_type_valid": {
32565 "manual_review": false,
32566 "text": "OK"
32567 },
32568 "lint-snap-v2:summary": {32064 "lint-snap-v2:summary": {
32569 "manual_review": false,32065 "manual_review": false,
32570 "text": "summary is too short: 'my summary'"32066 "text": "summary is too short: 'my summary'"
@@ -32758,10 +32254,6 @@ test-mpris-name-matches_0_amd64.snap: FAIL
32758 "manual_review": false,32254 "manual_review": false,
32759 "text": "OK"32255 "text": "OK"
32760 },32256 },
32761 "lint-snap-v2:snap_type_valid": {
32762 "manual_review": false,
32763 "text": "OK"
32764 },
32765 "lint-snap-v2:summary": {32257 "lint-snap-v2:summary": {
32766 "manual_review": false,32258 "manual_review": false,
32767 "text": "summary is too short: 'my summary'"32259 "text": "summary is too short: 'my summary'"
@@ -32942,10 +32434,6 @@ test-mpris-name-matches_0_amd64.snap: FAIL
32942 "manual_review": false,32434 "manual_review": false,
32943 "text": "OK"32435 "text": "OK"
32944 },32436 },
32945 "lint-snap-v2:snap_type_valid": {
32946 "manual_review": false,
32947 "text": "OK"
32948 },
32949 "lint-snap-v2:summary": {32437 "lint-snap-v2:summary": {
32950 "manual_review": false,32438 "manual_review": false,
32951 "text": "summary is too short: 'my summary'"32439 "text": "summary is too short: 'my summary'"
@@ -33135,10 +32623,6 @@ test-mpris-name-mismatch_0_amd64.snap: FAIL
33135 "manual_review": false,32623 "manual_review": false,
33136 "text": "OK"32624 "text": "OK"
33137 },32625 },
33138 "lint-snap-v2:snap_type_valid": {
33139 "manual_review": false,
33140 "text": "OK"
33141 },
33142 "lint-snap-v2:summary": {32626 "lint-snap-v2:summary": {
33143 "manual_review": false,32627 "manual_review": false,
33144 "text": "summary is too short: 'my summary'"32628 "text": "summary is too short: 'my summary'"
@@ -33319,10 +32803,6 @@ test-mpris-name-mismatch_0_amd64.snap: FAIL
33319 "manual_review": false,32803 "manual_review": false,
33320 "text": "OK"32804 "text": "OK"
33321 },32805 },
33322 "lint-snap-v2:snap_type_valid": {
33323 "manual_review": false,
33324 "text": "OK"
33325 },
33326 "lint-snap-v2:summary": {32806 "lint-snap-v2:summary": {
33327 "manual_review": false,32807 "manual_review": false,
33328 "text": "summary is too short: 'my summary'"32808 "text": "summary is too short: 'my summary'"
@@ -33492,10 +32972,6 @@ test-mpris_0_amd64.snap: pass
33492 "manual_review": false,32972 "manual_review": false,
33493 "text": "OK"32973 "text": "OK"
33494 },32974 },
33495 "lint-snap-v2:snap_type_valid": {
33496 "manual_review": false,
33497 "text": "OK"
33498 },
33499 "lint-snap-v2:summary": {32975 "lint-snap-v2:summary": {
33500 "manual_review": false,32976 "manual_review": false,
33501 "text": "OK"32977 "text": "OK"
@@ -33660,10 +33136,6 @@ test-mpris_0_amd64.snap: pass
33660 "manual_review": false,33136 "manual_review": false,
33661 "text": "OK"33137 "text": "OK"
33662 },33138 },
33663 "lint-snap-v2:snap_type_valid": {
33664 "manual_review": false,
33665 "text": "OK"
33666 },
33667 "lint-snap-v2:summary": {33139 "lint-snap-v2:summary": {
33668 "manual_review": false,33140 "manual_review": false,
33669 "text": "OK"33141 "text": "OK"
@@ -33824,10 +33296,6 @@ test-no-fragments_4.snap: FAIL
33824 "manual_review": false,33296 "manual_review": false,
33825 "text": "OK"33297 "text": "OK"
33826 },33298 },
33827 "lint-snap-v2:snap_type_valid": {
33828 "manual_review": false,
33829 "text": "OK"
33830 },
33831 "lint-snap-v2:summary": {33299 "lint-snap-v2:summary": {
33832 "manual_review": false,33300 "manual_review": false,
33833 "text": "OK"33301 "text": "OK"
@@ -33980,10 +33448,6 @@ test-no-fragments_4.snap: FAIL
33980 "manual_review": false,33448 "manual_review": false,
33981 "text": "OK"33449 "text": "OK"
33982 },33450 },
33983 "lint-snap-v2:snap_type_valid": {
33984 "manual_review": false,
33985 "text": "OK"
33986 },
33987 "lint-snap-v2:summary": {33451 "lint-snap-v2:summary": {
33988 "manual_review": false,33452 "manual_review": false,
33989 "text": "OK"33453 "text": "OK"
@@ -34166,10 +33630,6 @@ test-personal-files_1_all.snap: FAIL
34166 "manual_review": false,33630 "manual_review": false,
34167 "text": "OK"33631 "text": "OK"
34168 },33632 },
34169 "lint-snap-v2:snap_type_valid": {
34170 "manual_review": false,
34171 "text": "OK"
34172 },
34173 "lint-snap-v2:summary": {33633 "lint-snap-v2:summary": {
34174 "manual_review": false,33634 "manual_review": false,
34175 "text": "OK"33635 "text": "OK"
@@ -34346,10 +33806,6 @@ test-personal-files_1_all.snap: FAIL
34346 "manual_review": false,33806 "manual_review": false,
34347 "text": "OK"33807 "text": "OK"
34348 },33808 },
34349 "lint-snap-v2:snap_type_valid": {
34350 "manual_review": false,
34351 "text": "OK"
34352 },
34353 "lint-snap-v2:summary": {33809 "lint-snap-v2:summary": {
34354 "manual_review": false,33810 "manual_review": false,
34355 "text": "OK"33811 "text": "OK"
@@ -34523,10 +33979,6 @@ test-plug-cmd_1_all.snap: FAIL
34523 "manual_review": false,33979 "manual_review": false,
34524 "text": "OK"33980 "text": "OK"
34525 },33981 },
34526 "lint-snap-v2:snap_type_valid": {
34527 "manual_review": false,
34528 "text": "OK"
34529 },
34530 "lint-snap-v2:summary": {33982 "lint-snap-v2:summary": {
34531 "manual_review": false,33983 "manual_review": false,
34532 "text": "OK"33984 "text": "OK"
@@ -34691,10 +34143,6 @@ test-plug-cmd_1_all.snap: FAIL
34691 "manual_review": false,34143 "manual_review": false,
34692 "text": "OK"34144 "text": "OK"
34693 },34145 },
34694 "lint-snap-v2:snap_type_valid": {
34695 "manual_review": false,
34696 "text": "OK"
34697 },
34698 "lint-snap-v2:summary": {34146 "lint-snap-v2:summary": {
34699 "manual_review": false,34147 "manual_review": false,
34700 "text": "OK"34148 "text": "OK"
@@ -34850,10 +34298,6 @@ test-plug-hook-gadget_1_all.snap: FAIL
34850 "manual_review": false,34298 "manual_review": false,
34851 "text": "OK"34299 "text": "OK"
34852 },34300 },
34853 "lint-snap-v2:snap_type_valid": {
34854 "manual_review": false,
34855 "text": "OK"
34856 },
34857 "lint-snap-v2:summary": {34301 "lint-snap-v2:summary": {
34858 "manual_review": false,34302 "manual_review": false,
34859 "text": "OK"34303 "text": "OK"
@@ -34982,10 +34426,6 @@ test-plug-hook-gadget_1_all.snap: FAIL
34982 "manual_review": false,34426 "manual_review": false,
34983 "text": "OK"34427 "text": "OK"
34984 },34428 },
34985 "lint-snap-v2:snap_type_valid": {
34986 "manual_review": false,
34987 "text": "OK"
34988 },
34989 "lint-snap-v2:summary": {34429 "lint-snap-v2:summary": {
34990 "manual_review": false,34430 "manual_review": false,
34991 "text": "OK"34431 "text": "OK"
@@ -35155,10 +34595,6 @@ test-plug-hook_1_all.snap: FAIL
35155 "manual_review": false,34595 "manual_review": false,
35156 "text": "OK"34596 "text": "OK"
35157 },34597 },
35158 "lint-snap-v2:snap_type_valid": {
35159 "manual_review": false,
35160 "text": "OK"
35161 },
35162 "lint-snap-v2:summary": {34598 "lint-snap-v2:summary": {
35163 "manual_review": false,34599 "manual_review": false,
35164 "text": "OK"34600 "text": "OK"
@@ -35335,10 +34771,6 @@ test-plug-hook_1_all.snap: FAIL
35335 "manual_review": false,34771 "manual_review": false,
35336 "text": "OK"34772 "text": "OK"
35337 },34773 },
35338 "lint-snap-v2:snap_type_valid": {
35339 "manual_review": false,
35340 "text": "OK"
35341 },
35342 "lint-snap-v2:summary": {34774 "lint-snap-v2:summary": {
35343 "manual_review": false,34775 "manual_review": false,
35344 "text": "OK"34776 "text": "OK"
@@ -35502,10 +34934,6 @@ test-plug-reference-hook-gadget_1_all.snap: FAIL
35502 "manual_review": false,34934 "manual_review": false,
35503 "text": "OK"34935 "text": "OK"
35504 },34936 },
35505 "lint-snap-v2:snap_type_valid": {
35506 "manual_review": false,
35507 "text": "OK"
35508 },
35509 "lint-snap-v2:summary": {34937 "lint-snap-v2:summary": {
35510 "manual_review": false,34938 "manual_review": false,
35511 "text": "OK"34939 "text": "OK"
@@ -35642,10 +35070,6 @@ test-plug-reference-hook-gadget_1_all.snap: FAIL
35642 "manual_review": false,35070 "manual_review": false,
35643 "text": "OK"35071 "text": "OK"
35644 },35072 },
35645 "lint-snap-v2:snap_type_valid": {
35646 "manual_review": false,
35647 "text": "OK"
35648 },
35649 "lint-snap-v2:summary": {35073 "lint-snap-v2:summary": {
35650 "manual_review": false,35074 "manual_review": false,
35651 "text": "OK"35075 "text": "OK"
@@ -35823,10 +35247,6 @@ test-plug-reference-hook_1_all.snap: FAIL
35823 "manual_review": false,35247 "manual_review": false,
35824 "text": "OK"35248 "text": "OK"
35825 },35249 },
35826 "lint-snap-v2:snap_type_valid": {
35827 "manual_review": false,
35828 "text": "OK"
35829 },
35830 "lint-snap-v2:summary": {35250 "lint-snap-v2:summary": {
35831 "manual_review": false,35251 "manual_review": false,
35832 "text": "OK"35252 "text": "OK"
@@ -36011,10 +35431,6 @@ test-plug-reference-hook_1_all.snap: FAIL
36011 "manual_review": false,35431 "manual_review": false,
36012 "text": "OK"35432 "text": "OK"
36013 },35433 },
36014 "lint-snap-v2:snap_type_valid": {
36015 "manual_review": false,
36016 "text": "OK"
36017 },
36018 "lint-snap-v2:summary": {35434 "lint-snap-v2:summary": {
36019 "manual_review": false,35435 "manual_review": false,
36020 "text": "OK"35436 "text": "OK"
@@ -36196,10 +35612,6 @@ test-plug-reference_1_all.snap: FAIL
36196 "manual_review": false,35612 "manual_review": false,
36197 "text": "OK"35613 "text": "OK"
36198 },35614 },
36199 "lint-snap-v2:snap_type_valid": {
36200 "manual_review": false,
36201 "text": "OK"
36202 },
36203 "lint-snap-v2:summary": {35615 "lint-snap-v2:summary": {
36204 "manual_review": false,35616 "manual_review": false,
36205 "text": "OK"35617 "text": "OK"
@@ -36372,10 +35784,6 @@ test-plug-reference_1_all.snap: FAIL
36372 "manual_review": false,35784 "manual_review": false,
36373 "text": "OK"35785 "text": "OK"
36374 },35786 },
36375 "lint-snap-v2:snap_type_valid": {
36376 "manual_review": false,
36377 "text": "OK"
36378 },
36379 "lint-snap-v2:summary": {35787 "lint-snap-v2:summary": {
36380 "manual_review": false,35788 "manual_review": false,
36381 "text": "OK"35789 "text": "OK"
@@ -36549,10 +35957,6 @@ test-refresh-schedule_0.1_all.snap: FAIL
36549 "manual_review": false,35957 "manual_review": false,
36550 "text": "OK"35958 "text": "OK"
36551 },35959 },
36552 "lint-snap-v2:snap_type_valid": {
36553 "manual_review": false,
36554 "text": "OK"
36555 },
36556 "lint-snap-v2:summary": {35960 "lint-snap-v2:summary": {
36557 "manual_review": false,35961 "manual_review": false,
36558 "text": "OK"35962 "text": "OK"
@@ -36717,10 +36121,6 @@ test-refresh-schedule_0.1_all.snap: FAIL
36717 "manual_review": false,36121 "manual_review": false,
36718 "text": "OK"36122 "text": "OK"
36719 },36123 },
36720 "lint-snap-v2:snap_type_valid": {
36721 "manual_review": false,
36722 "text": "OK"
36723 },
36724 "lint-snap-v2:summary": {36124 "lint-snap-v2:summary": {
36725 "manual_review": false,36125 "manual_review": false,
36726 "text": "OK"36126 "text": "OK"
@@ -36912,10 +36312,6 @@ test-resquash-minimal_0.snap: FAIL
36912 "manual_review": false,36312 "manual_review": false,
36913 "text": "OK"36313 "text": "OK"
36914 },36314 },
36915 "lint-snap-v2:snap_type_valid": {
36916 "manual_review": false,
36917 "text": "OK"
36918 },
36919 "lint-snap-v2:summary": {36315 "lint-snap-v2:summary": {
36920 "manual_review": false,36316 "manual_review": false,
36921 "text": "OK"36317 "text": "OK"
@@ -37093,10 +36489,6 @@ test-resquash-minimal_0.snap: FAIL
37093 "manual_review": false,36489 "manual_review": false,
37094 "text": "OK"36490 "text": "OK"
37095 },36491 },
37096 "lint-snap-v2:snap_type_valid": {
37097 "manual_review": false,
37098 "text": "OK"
37099 },
37100 "lint-snap-v2:summary": {36492 "lint-snap-v2:summary": {
37101 "manual_review": false,36493 "manual_review": false,
37102 "text": "OK"36494 "text": "OK"
@@ -37267,10 +36659,6 @@ test-slot-cmd_1_all.snap: FAIL
37267 "manual_review": false,36659 "manual_review": false,
37268 "text": "OK"36660 "text": "OK"
37269 },36661 },
37270 "lint-snap-v2:snap_type_valid": {
37271 "manual_review": false,
37272 "text": "OK"
37273 },
37274 "lint-snap-v2:summary": {36662 "lint-snap-v2:summary": {
37275 "manual_review": false,36663 "manual_review": false,
37276 "text": "OK"36664 "text": "OK"
@@ -37435,10 +36823,6 @@ test-slot-cmd_1_all.snap: FAIL
37435 "manual_review": false,36823 "manual_review": false,
37436 "text": "OK"36824 "text": "OK"
37437 },36825 },
37438 "lint-snap-v2:snap_type_valid": {
37439 "manual_review": false,
37440 "text": "OK"
37441 },
37442 "lint-snap-v2:summary": {36826 "lint-snap-v2:summary": {
37443 "manual_review": false,36827 "manual_review": false,
37444 "text": "OK"36828 "text": "OK"
@@ -37624,10 +37008,6 @@ test-slot-hook_1_all.snap: FAIL
37624 "manual_review": false,37008 "manual_review": false,
37625 "text": "OK"37009 "text": "OK"
37626 },37010 },
37627 "lint-snap-v2:snap_type_valid": {
37628 "manual_review": false,
37629 "text": "OK"
37630 },
37631 "lint-snap-v2:summary": {37011 "lint-snap-v2:summary": {
37632 "manual_review": false,37012 "manual_review": false,
37633 "text": "OK"37013 "text": "OK"
@@ -37804,10 +37184,6 @@ test-slot-hook_1_all.snap: FAIL
37804 "manual_review": false,37184 "manual_review": false,
37805 "text": "OK"37185 "text": "OK"
37806 },37186 },
37807 "lint-snap-v2:snap_type_valid": {
37808 "manual_review": false,
37809 "text": "OK"
37810 },
37811 "lint-snap-v2:summary": {37187 "lint-snap-v2:summary": {
37812 "manual_review": false,37188 "manual_review": false,
37813 "text": "OK"37189 "text": "OK"
@@ -38001,10 +37377,6 @@ test-slot-reference-hook_1_all.snap: FAIL
38001 "manual_review": false,37377 "manual_review": false,
38002 "text": "OK"37378 "text": "OK"
38003 },37379 },
38004 "lint-snap-v2:snap_type_valid": {
38005 "manual_review": false,
38006 "text": "OK"
38007 },
38008 "lint-snap-v2:summary": {37380 "lint-snap-v2:summary": {
38009 "manual_review": false,37381 "manual_review": false,
38010 "text": "OK"37382 "text": "OK"
@@ -38189,10 +37561,6 @@ test-slot-reference-hook_1_all.snap: FAIL
38189 "manual_review": false,37561 "manual_review": false,
38190 "text": "OK"37562 "text": "OK"
38191 },37563 },
38192 "lint-snap-v2:snap_type_valid": {
38193 "manual_review": false,
38194 "text": "OK"
38195 },
38196 "lint-snap-v2:summary": {37564 "lint-snap-v2:summary": {
38197 "manual_review": false,37565 "manual_review": false,
38198 "text": "OK"37566 "text": "OK"
@@ -38374,10 +37742,6 @@ test-slot-reference_1_all.snap: FAIL
38374 "manual_review": false,37742 "manual_review": false,
38375 "text": "OK"37743 "text": "OK"
38376 },37744 },
38377 "lint-snap-v2:snap_type_valid": {
38378 "manual_review": false,
38379 "text": "OK"
38380 },
38381 "lint-snap-v2:summary": {37745 "lint-snap-v2:summary": {
38382 "manual_review": false,37746 "manual_review": false,
38383 "text": "OK"37747 "text": "OK"
@@ -38550,10 +37914,6 @@ test-slot-reference_1_all.snap: FAIL
38550 "manual_review": false,37914 "manual_review": false,
38551 "text": "OK"37915 "text": "OK"
38552 },37916 },
38553 "lint-snap-v2:snap_type_valid": {
38554 "manual_review": false,
38555 "text": "OK"
38556 },
38557 "lint-snap-v2:summary": {37917 "lint-snap-v2:summary": {
38558 "manual_review": false,37918 "manual_review": false,
38559 "text": "OK"37919 "text": "OK"
@@ -38731,10 +38091,6 @@ test-slot-toplevel_1_all.snap: FAIL
38731 "manual_review": false,38091 "manual_review": false,
38732 "text": "OK"38092 "text": "OK"
38733 },38093 },
38734 "lint-snap-v2:snap_type_valid": {
38735 "manual_review": false,
38736 "text": "OK"
38737 },
38738 "lint-snap-v2:summary": {38094 "lint-snap-v2:summary": {
38739 "manual_review": false,38095 "manual_review": false,
38740 "text": "OK"38096 "text": "OK"
@@ -38903,10 +38259,6 @@ test-slot-toplevel_1_all.snap: FAIL
38903 "manual_review": false,38259 "manual_review": false,
38904 "text": "OK"38260 "text": "OK"
38905 },38261 },
38906 "lint-snap-v2:snap_type_valid": {
38907 "manual_review": false,
38908 "text": "OK"
38909 },
38910 "lint-snap-v2:summary": {38262 "lint-snap-v2:summary": {
38911 "manual_review": false,38263 "manual_review": false,
38912 "text": "OK"38264 "text": "OK"
@@ -39071,10 +38423,6 @@ test-snapcraft-manifest-package-in-installed-snaps_0_amd64.snap: pass
39071 "manual_review": false,38423 "manual_review": false,
39072 "text": "OK"38424 "text": "OK"
39073 },38425 },
39074 "lint-snap-v2:snap_type_valid": {
39075 "manual_review": false,
39076 "text": "OK"
39077 },
39078 "lint-snap-v2:summary": {38426 "lint-snap-v2:summary": {
39079 "manual_review": false,38427 "manual_review": false,
39080 "text": "summary is too short: 'my summary'"38428 "text": "summary is too short: 'my summary'"
@@ -39230,10 +38578,6 @@ test-snapcraft-manifest-package-in-installed-snaps_0_amd64.snap: pass
39230 "manual_review": false,38578 "manual_review": false,
39231 "text": "OK"38579 "text": "OK"
39232 },38580 },
39233 "lint-snap-v2:snap_type_valid": {
39234 "manual_review": false,
39235 "text": "OK"
39236 },
39237 "lint-snap-v2:summary": {38581 "lint-snap-v2:summary": {
39238 "manual_review": false,38582 "manual_review": false,
39239 "text": "summary is too short: 'my summary'"38583 "text": "summary is too short: 'my summary'"
@@ -39394,10 +38738,6 @@ test-snapcraft-manifest-snapcraft-updated_0_amd64.snap: pass
39394 "manual_review": false,38738 "manual_review": false,
39395 "text": "OK"38739 "text": "OK"
39396 },38740 },
39397 "lint-snap-v2:snap_type_valid": {
39398 "manual_review": false,
39399 "text": "OK"
39400 },
39401 "lint-snap-v2:summary": {38741 "lint-snap-v2:summary": {
39402 "manual_review": false,38742 "manual_review": false,
39403 "text": "summary is too short: 'my summary'"38743 "text": "summary is too short: 'my summary'"
@@ -39553,10 +38893,6 @@ test-snapcraft-manifest-snapcraft-updated_0_amd64.snap: pass
39553 "manual_review": false,38893 "manual_review": false,
39554 "text": "OK"38894 "text": "OK"
39555 },38895 },
39556 "lint-snap-v2:snap_type_valid": {
39557 "manual_review": false,
39558 "text": "OK"
39559 },
39560 "lint-snap-v2:summary": {38896 "lint-snap-v2:summary": {
39561 "manual_review": false,38897 "manual_review": false,
39562 "text": "summary is too short: 'my summary'"38898 "text": "summary is too short: 'my summary'"
@@ -39717,10 +39053,6 @@ test-snapcraft-manifest-snapcraft-version-needed_0_amd64.snap: pass
39717 "manual_review": false,39053 "manual_review": false,
39718 "text": "OK"39054 "text": "OK"
39719 },39055 },
39720 "lint-snap-v2:snap_type_valid": {
39721 "manual_review": false,
39722 "text": "OK"
39723 },
39724 "lint-snap-v2:summary": {39056 "lint-snap-v2:summary": {
39725 "manual_review": false,39057 "manual_review": false,
39726 "text": "summary is too short: 'my summary'"39058 "text": "summary is too short: 'my summary'"
@@ -39876,10 +39208,6 @@ test-snapcraft-manifest-snapcraft-version-needed_0_amd64.snap: pass
39876 "manual_review": false,39208 "manual_review": false,
39877 "text": "OK"39209 "text": "OK"
39878 },39210 },
39879 "lint-snap-v2:snap_type_valid": {
39880 "manual_review": false,
39881 "text": "OK"
39882 },
39883 "lint-snap-v2:summary": {39211 "lint-snap-v2:summary": {
39884 "manual_review": false,39212 "manual_review": false,
39885 "text": "summary is too short: 'my summary'"39213 "text": "summary is too short: 'my summary'"
@@ -40040,10 +39368,6 @@ test-snapcraft-manifest-snapcraft-version_0_amd64.snap: pass
40040 "manual_review": false,39368 "manual_review": false,
40041 "text": "OK"39369 "text": "OK"
40042 },39370 },
40043 "lint-snap-v2:snap_type_valid": {
40044 "manual_review": false,
40045 "text": "OK"
40046 },
40047 "lint-snap-v2:summary": {39371 "lint-snap-v2:summary": {
40048 "manual_review": false,39372 "manual_review": false,
40049 "text": "summary is too short: 'my summary'"39373 "text": "summary is too short: 'my summary'"
@@ -40199,10 +39523,6 @@ test-snapcraft-manifest-snapcraft-version_0_amd64.snap: pass
40199 "manual_review": false,39523 "manual_review": false,
40200 "text": "OK"39524 "text": "OK"
40201 },39525 },
40202 "lint-snap-v2:snap_type_valid": {
40203 "manual_review": false,
40204 "text": "OK"
40205 },
40206 "lint-snap-v2:summary": {39526 "lint-snap-v2:summary": {
40207 "manual_review": false,39527 "manual_review": false,
40208 "text": "summary is too short: 'my summary'"39528 "text": "summary is too short: 'my summary'"
@@ -40363,10 +39683,6 @@ test-snapcraft-manifest-unittest_0_amd64.snap: pass
40363 "manual_review": false,39683 "manual_review": false,
40364 "text": "OK"39684 "text": "OK"
40365 },39685 },
40366 "lint-snap-v2:snap_type_valid": {
40367 "manual_review": false,
40368 "text": "OK"
40369 },
40370 "lint-snap-v2:summary": {39686 "lint-snap-v2:summary": {
40371 "manual_review": false,39687 "manual_review": false,
40372 "text": "summary is too short: 'my summary'"39688 "text": "summary is too short: 'my summary'"
@@ -40522,10 +39838,6 @@ test-snapcraft-manifest-unittest_0_amd64.snap: pass
40522 "manual_review": false,39838 "manual_review": false,
40523 "text": "OK"39839 "text": "OK"
40524 },39840 },
40525 "lint-snap-v2:snap_type_valid": {
40526 "manual_review": false,
40527 "text": "OK"
40528 },
40529 "lint-snap-v2:summary": {39841 "lint-snap-v2:summary": {
40530 "manual_review": false,39842 "manual_review": false,
40531 "text": "summary is too short: 'my summary'"39843 "text": "summary is too short: 'my summary'"
@@ -40686,10 +39998,6 @@ test-snapcraft-manifest_0_amd64.snap: pass
40686 "manual_review": false,39998 "manual_review": false,
40687 "text": "OK"39999 "text": "OK"
40688 },40000 },
40689 "lint-snap-v2:snap_type_valid": {
40690 "manual_review": false,
40691 "text": "OK"
40692 },
40693 "lint-snap-v2:summary": {40001 "lint-snap-v2:summary": {
40694 "manual_review": false,40002 "manual_review": false,
40695 "text": "summary is too short: 'my summary'"40003 "text": "summary is too short: 'my summary'"
@@ -40845,10 +40153,6 @@ test-snapcraft-manifest_0_amd64.snap: pass
40845 "manual_review": false,40153 "manual_review": false,
40846 "text": "OK"40154 "text": "OK"
40847 },40155 },
40848 "lint-snap-v2:snap_type_valid": {
40849 "manual_review": false,
40850 "text": "OK"
40851 },
40852 "lint-snap-v2:summary": {40156 "lint-snap-v2:summary": {
40853 "manual_review": false,40157 "manual_review": false,
40854 "text": "summary is too short: 'my summary'"40158 "text": "summary is too short: 'my summary'"
@@ -41061,10 +40365,6 @@ test-snapd-layout_1.0_all.snap: pass
41061 "manual_review": false,40365 "manual_review": false,
41062 "text": "OK"40366 "text": "OK"
41063 },40367 },
41064 "lint-snap-v2:snap_type_valid": {
41065 "manual_review": false,
41066 "text": "OK"
41067 },
41068 "lint-snap-v2:summary": {40368 "lint-snap-v2:summary": {
41069 "manual_review": false,40369 "manual_review": false,
41070 "text": "OK"40370 "text": "OK"
@@ -41276,10 +40576,6 @@ test-snapd-layout_1.0_all.snap: pass
41276 "manual_review": false,40576 "manual_review": false,
41277 "text": "OK"40577 "text": "OK"
41278 },40578 },
41279 "lint-snap-v2:snap_type_valid": {
41280 "manual_review": false,
41281 "text": "OK"
41282 },
41283 "lint-snap-v2:summary": {40579 "lint-snap-v2:summary": {
41284 "manual_review": false,40580 "manual_review": false,
41285 "text": "OK"40581 "text": "OK"
@@ -41444,10 +40740,6 @@ test-snapd-with-default-configure_3.snap: pass
41444 "manual_review": false,40740 "manual_review": false,
41445 "text": "OK"40741 "text": "OK"
41446 },40742 },
41447 "lint-snap-v2:snap_type_valid": {
41448 "manual_review": false,
41449 "text": "OK"
41450 },
41451 "lint-snap-v2:summary": {40743 "lint-snap-v2:summary": {
41452 "manual_review": false,40744 "manual_review": false,
41453 "text": "OK"40745 "text": "OK"
@@ -41611,10 +40903,6 @@ test-snapd-with-default-configure_3.snap: pass
41611 "manual_review": false,40903 "manual_review": false,
41612 "text": "OK"40904 "text": "OK"
41613 },40905 },
41614 "lint-snap-v2:snap_type_valid": {
41615 "manual_review": false,
41616 "text": "OK"
41617 },
41618 "lint-snap-v2:summary": {40906 "lint-snap-v2:summary": {
41619 "manual_review": false,40907 "manual_review": false,
41620 "text": "OK"40908 "text": "OK"
@@ -41756,10 +41044,6 @@ test-state-base_1_amd64.snap: FAIL
41756 "manual_review": false,41044 "manual_review": false,
41757 "text": "OK"41045 "text": "OK"
41758 },41046 },
41759 "lint-snap-v2:snap_type_valid": {
41760 "manual_review": false,
41761 "text": "OK"
41762 },
41763 "lint-snap-v2:summary": {41047 "lint-snap-v2:summary": {
41764 "manual_review": false,41048 "manual_review": false,
41765 "text": "OK"41049 "text": "OK"
@@ -41868,10 +41152,6 @@ test-state-base_1_amd64.snap: FAIL
41868 "manual_review": false,41152 "manual_review": false,
41869 "text": "OK"41153 "text": "OK"
41870 },41154 },
41871 "lint-snap-v2:snap_type_valid": {
41872 "manual_review": false,
41873 "text": "OK"
41874 },
41875 "lint-snap-v2:summary": {41155 "lint-snap-v2:summary": {
41876 "manual_review": false,41156 "manual_review": false,
41877 "text": "OK"41157 "text": "OK"
@@ -42025,10 +41305,6 @@ test-superprivileged-cmd_1_all.snap: FAIL
42025 "manual_review": false,41305 "manual_review": false,
42026 "text": "OK"41306 "text": "OK"
42027 },41307 },
42028 "lint-snap-v2:snap_type_valid": {
42029 "manual_review": false,
42030 "text": "OK"
42031 },
42032 "lint-snap-v2:summary": {41308 "lint-snap-v2:summary": {
42033 "manual_review": false,41309 "manual_review": false,
42034 "text": "OK"41310 "text": "OK"
@@ -42193,10 +41469,6 @@ test-superprivileged-cmd_1_all.snap: FAIL
42193 "manual_review": false,41469 "manual_review": false,
42194 "text": "OK"41470 "text": "OK"
42195 },41471 },
42196 "lint-snap-v2:snap_type_valid": {
42197 "manual_review": false,
42198 "text": "OK"
42199 },
42200 "lint-snap-v2:summary": {41472 "lint-snap-v2:summary": {
42201 "manual_review": false,41473 "manual_review": false,
42202 "text": "OK"41474 "text": "OK"
@@ -42378,10 +41650,6 @@ test-superprivileged-reference_1_all.snap: FAIL
42378 "manual_review": false,41650 "manual_review": false,
42379 "text": "OK"41651 "text": "OK"
42380 },41652 },
42381 "lint-snap-v2:snap_type_valid": {
42382 "manual_review": false,
42383 "text": "OK"
42384 },
42385 "lint-snap-v2:summary": {41653 "lint-snap-v2:summary": {
42386 "manual_review": false,41654 "manual_review": false,
42387 "text": "OK"41655 "text": "OK"
@@ -42554,10 +41822,6 @@ test-superprivileged-reference_1_all.snap: FAIL
42554 "manual_review": false,41822 "manual_review": false,
42555 "text": "OK"41823 "text": "OK"
42556 },41824 },
42557 "lint-snap-v2:snap_type_valid": {
42558 "manual_review": false,
42559 "text": "OK"
42560 },
42561 "lint-snap-v2:summary": {41825 "lint-snap-v2:summary": {
42562 "manual_review": false,41826 "manual_review": false,
42563 "text": "OK"41827 "text": "OK"
@@ -42743,10 +42007,6 @@ test-superprivileged-sneaky_1_all.snap: FAIL
42743 "manual_review": false,42007 "manual_review": false,
42744 "text": "OK"42008 "text": "OK"
42745 },42009 },
42746 "lint-snap-v2:snap_type_valid": {
42747 "manual_review": false,
42748 "text": "OK"
42749 },
42750 "lint-snap-v2:summary": {42010 "lint-snap-v2:summary": {
42751 "manual_review": false,42011 "manual_review": false,
42752 "text": "OK"42012 "text": "OK"
@@ -42924,10 +42184,6 @@ test-superprivileged-sneaky_1_all.snap: FAIL
42924 "manual_review": false,42184 "manual_review": false,
42925 "text": "OK"42185 "text": "OK"
42926 },42186 },
42927 "lint-snap-v2:snap_type_valid": {
42928 "manual_review": false,
42929 "text": "OK"
42930 },
42931 "lint-snap-v2:summary": {42187 "lint-snap-v2:summary": {
42932 "manual_review": false,42188 "manual_review": false,
42933 "text": "OK"42189 "text": "OK"
@@ -43114,10 +42370,6 @@ test-superprivileged-toplevel_1_all.snap: FAIL
43114 "manual_review": false,42370 "manual_review": false,
43115 "text": "OK"42371 "text": "OK"
43116 },42372 },
43117 "lint-snap-v2:snap_type_valid": {
43118 "manual_review": false,
43119 "text": "OK"
43120 },
43121 "lint-snap-v2:summary": {42373 "lint-snap-v2:summary": {
43122 "manual_review": false,42374 "manual_review": false,
43123 "text": "OK"42375 "text": "OK"
@@ -43290,10 +42542,6 @@ test-superprivileged-toplevel_1_all.snap: FAIL
43290 "manual_review": false,42542 "manual_review": false,
43291 "text": "OK"42543 "text": "OK"
43292 },42544 },
43293 "lint-snap-v2:snap_type_valid": {
43294 "manual_review": false,
43295 "text": "OK"
43296 },
43297 "lint-snap-v2:summary": {42545 "lint-snap-v2:summary": {
43298 "manual_review": false,42546 "manual_review": false,
43299 "text": "OK"42547 "text": "OK"
@@ -43450,10 +42698,6 @@ test-system-usernames_0_all.snap: pass
43450 "manual_review": false,42698 "manual_review": false,
43451 "text": "OK"42699 "text": "OK"
43452 },42700 },
43453 "lint-snap-v2:snap_type_valid": {
43454 "manual_review": false,
43455 "text": "OK"
43456 },
43457 "lint-snap-v2:summary": {42701 "lint-snap-v2:summary": {
43458 "manual_review": false,42702 "manual_review": false,
43459 "text": "OK"42703 "text": "OK"
@@ -43613,10 +42857,6 @@ test-system-usernames_0_all.snap: pass
43613 "manual_review": false,42857 "manual_review": false,
43614 "text": "OK"42858 "text": "OK"
43615 },42859 },
43616 "lint-snap-v2:snap_type_valid": {
43617 "manual_review": false,
43618 "text": "OK"
43619 },
43620 "lint-snap-v2:summary": {42860 "lint-snap-v2:summary": {
43621 "manual_review": false,42861 "manual_review": false,
43622 "text": "OK"42862 "text": "OK"
@@ -43876,10 +43116,6 @@ test-top-level-dbus-slot_1_amd64.snap: FAIL
43876 "manual_review": false,43116 "manual_review": false,
43877 "text": "OK"43117 "text": "OK"
43878 },43118 },
43879 "lint-snap-v2:snap_type_valid": {
43880 "manual_review": false,
43881 "text": "OK"
43882 },
43883 "lint-snap-v2:summary": {43119 "lint-snap-v2:summary": {
43884 "manual_review": false,43120 "manual_review": false,
43885 "text": "OK"43121 "text": "OK"
@@ -44120,10 +43356,6 @@ test-top-level-dbus-slot_1_amd64.snap: FAIL
44120 "manual_review": false,43356 "manual_review": false,
44121 "text": "OK"43357 "text": "OK"
44122 },43358 },
44123 "lint-snap-v2:snap_type_valid": {
44124 "manual_review": false,
44125 "text": "OK"
44126 },
44127 "lint-snap-v2:summary": {43359 "lint-snap-v2:summary": {
44128 "manual_review": false,43360 "manual_review": false,
44129 "text": "OK"43361 "text": "OK"
@@ -44244,10 +43476,6 @@ test-topdir-ro_1.0_all.snap: pass
44244 "manual_review": false,43476 "manual_review": false,
44245 "text": "OK"43477 "text": "OK"
44246 },43478 },
44247 "lint-snap-v2:snap_type_valid": {
44248 "manual_review": false,
44249 "text": "OK"
44250 },
44251 "lint-snap-v2:summary": {43479 "lint-snap-v2:summary": {
44252 "manual_review": false,43480 "manual_review": false,
44253 "text": "OK"43481 "text": "OK"
@@ -44347,10 +43575,6 @@ test-topdir-ro_1.0_all.snap: pass
44347 "manual_review": false,43575 "manual_review": false,
44348 "text": "OK"43576 "text": "OK"
44349 },43577 },
44350 "lint-snap-v2:snap_type_valid": {
44351 "manual_review": false,
44352 "text": "OK"
44353 },
44354 "lint-snap-v2:summary": {43578 "lint-snap-v2:summary": {
44355 "manual_review": false,43579 "manual_review": false,
44356 "text": "OK"43580 "text": "OK"
@@ -44516,10 +43740,6 @@ test-unity7-home_0.1_all.snap: pass
44516 "manual_review": false,43740 "manual_review": false,
44517 "text": "OK"43741 "text": "OK"
44518 },43742 },
44519 "lint-snap-v2:snap_type_valid": {
44520 "manual_review": false,
44521 "text": "OK"
44522 },
44523 "lint-snap-v2:summary": {43743 "lint-snap-v2:summary": {
44524 "manual_review": false,43744 "manual_review": false,
44525 "text": "summary is too short: 'foo'"43745 "text": "summary is too short: 'foo'"
@@ -44696,10 +43916,6 @@ test-unity7-home_0.1_all.snap: pass
44696 "manual_review": false,43916 "manual_review": false,
44697 "text": "OK"43917 "text": "OK"
44698 },43918 },
44699 "lint-snap-v2:snap_type_valid": {
44700 "manual_review": false,
44701 "text": "OK"
44702 },
44703 "lint-snap-v2:summary": {43919 "lint-snap-v2:summary": {
44704 "manual_review": false,43920 "manual_review": false,
44705 "text": "summary is too short: 'foo'"43921 "text": "summary is too short: 'foo'"
@@ -44853,10 +44069,6 @@ test-void-dir_0.1_all.snap: FAIL
44853 "manual_review": false,44069 "manual_review": false,
44854 "text": "OK"44070 "text": "OK"
44855 },44071 },
44856 "lint-snap-v2:snap_type_valid": {
44857 "manual_review": false,
44858 "text": "OK"
44859 },
44860 "lint-snap-v2:summary": {44072 "lint-snap-v2:summary": {
44861 "manual_review": false,44073 "manual_review": false,
44862 "text": "summary is too short: 'foo'"44074 "text": "summary is too short: 'foo'"
@@ -45002,10 +44214,6 @@ test-void-dir_0.1_all.snap: FAIL
45002 "manual_review": false,44214 "manual_review": false,
45003 "text": "OK"44215 "text": "OK"
45004 },44216 },
45005 "lint-snap-v2:snap_type_valid": {
45006 "manual_review": false,
45007 "text": "OK"
45008 },
45009 "lint-snap-v2:summary": {44217 "lint-snap-v2:summary": {
45010 "manual_review": false,44218 "manual_review": false,
45011 "text": "summary is too short: 'foo'"44219 "text": "summary is too short: 'foo'"
@@ -45185,10 +44393,6 @@ test-x11-home_0.1_all.snap: pass
45185 "manual_review": false,44393 "manual_review": false,
45186 "text": "OK"44394 "text": "OK"
45187 },44395 },
45188 "lint-snap-v2:snap_type_valid": {
45189 "manual_review": false,
45190 "text": "OK"
45191 },
45192 "lint-snap-v2:summary": {44396 "lint-snap-v2:summary": {
45193 "manual_review": false,44397 "manual_review": false,
45194 "text": "summary is too short: 'foo'"44398 "text": "summary is too short: 'foo'"
@@ -45361,10 +44565,6 @@ test-x11-home_0.1_all.snap: pass
45361 "manual_review": false,44565 "manual_review": false,
45362 "text": "OK"44566 "text": "OK"
45363 },44567 },
45364 "lint-snap-v2:snap_type_valid": {
45365 "manual_review": false,
45366 "text": "OK"
45367 },
45368 "lint-snap-v2:summary": {44568 "lint-snap-v2:summary": {
45369 "manual_review": false,44569 "manual_review": false,
45370 "text": "summary is too short: 'foo'"44570 "text": "summary is too short: 'foo'"
@@ -45526,10 +44726,6 @@ test-x11-no-desktop_0.1_all.snap: pass
45526 "manual_review": false,44726 "manual_review": false,
45527 "text": "OK"44727 "text": "OK"
45528 },44728 },
45529 "lint-snap-v2:snap_type_valid": {
45530 "manual_review": false,
45531 "text": "OK"
45532 },
45533 "lint-snap-v2:summary": {44729 "lint-snap-v2:summary": {
45534 "manual_review": false,44730 "manual_review": false,
45535 "text": "summary is too short: 'foo'"44731 "text": "summary is too short: 'foo'"
@@ -45686,10 +44882,6 @@ test-x11-no-desktop_0.1_all.snap: pass
45686 "manual_review": false,44882 "manual_review": false,
45687 "text": "OK"44883 "text": "OK"
45688 },44884 },
45689 "lint-snap-v2:snap_type_valid": {
45690 "manual_review": false,
45691 "text": "OK"
45692 },
45693 "lint-snap-v2:summary": {44885 "lint-snap-v2:summary": {
45694 "manual_review": false,44886 "manual_review": false,
45695 "text": "summary is too short: 'foo'"44887 "text": "summary is too short: 'foo'"
@@ -45809,10 +45001,6 @@ ubuntu-core_16.04.1+test1_amd64.snap: pass
45809 "manual_review": false,45001 "manual_review": false,
45810 "text": "OK (override 'ubuntu-core' for 'type: os')"45002 "text": "OK (override 'ubuntu-core' for 'type: os')"
45811 },45003 },
45812 "lint-snap-v2:snap_type_valid": {
45813 "manual_review": false,
45814 "text": "OK"
45815 },
45816 "lint-snap-v2:summary": {45004 "lint-snap-v2:summary": {
45817 "manual_review": false,45005 "manual_review": false,
45818 "text": "OK"45006 "text": "OK"
@@ -45907,10 +45095,6 @@ ubuntu-core_16.04.1+test1_amd64.snap: pass
45907 "manual_review": false,45095 "manual_review": false,
45908 "text": "OK (override 'ubuntu-core' for 'type: os')"45096 "text": "OK (override 'ubuntu-core' for 'type: os')"
45909 },45097 },
45910 "lint-snap-v2:snap_type_valid": {
45911 "manual_review": false,
45912 "text": "OK"
45913 },
45914 "lint-snap-v2:summary": {45098 "lint-snap-v2:summary": {
45915 "manual_review": false,45099 "manual_review": false,
45916 "text": "OK"45100 "text": "OK"
@@ -46156,10 +45340,6 @@ vlc_daily+test1_amd64.snap: pass
46156 "manual_review": false,45340 "manual_review": false,
46157 "text": "OK"45341 "text": "OK"
46158 },45342 },
46159 "lint-snap-v2:snap_type_valid": {
46160 "manual_review": false,
46161 "text": "OK"
46162 },
46163 "lint-snap-v2:summary": {45343 "lint-snap-v2:summary": {
46164 "manual_review": false,45344 "manual_review": false,
46165 "text": "OK"45345 "text": "OK"
@@ -46416,10 +45596,6 @@ vlc_daily+test1_amd64.snap: pass
46416 "manual_review": false,45596 "manual_review": false,
46417 "text": "OK"45597 "text": "OK"
46418 },45598 },
46419 "lint-snap-v2:snap_type_valid": {
46420 "manual_review": false,
46421 "text": "OK"
46422 },
46423 "lint-snap-v2:summary": {45599 "lint-snap-v2:summary": {
46424 "manual_review": false,45600 "manual_review": false,
46425 "text": "OK"45601 "text": "OK"
@@ -46604,10 +45780,6 @@ test-classic_0_all.snap: pass
46604 "manual_review": false,45780 "manual_review": false,
46605 "text": "OK"45781 "text": "OK"
46606 },45782 },
46607 "lint-snap-v2:snap_type_valid": {
46608 "manual_review": false,
46609 "text": "OK"
46610 },
46611 "lint-snap-v2:summary": {45783 "lint-snap-v2:summary": {
46612 "manual_review": false,45784 "manual_review": false,
46613 "text": "summary is too short: 'my summary'"45785 "text": "summary is too short: 'my summary'"
@@ -46795,10 +45967,6 @@ test-classic_0_all.snap: pass
46795 "manual_review": false,45967 "manual_review": false,
46796 "text": "OK"45968 "text": "OK"
46797 },45969 },
46798 "lint-snap-v2:snap_type_valid": {
46799 "manual_review": false,
46800 "text": "OK"
46801 },
46802 "lint-snap-v2:summary": {45970 "lint-snap-v2:summary": {
46803 "manual_review": false,45971 "manual_review": false,
46804 "text": "summary is too short: 'my summary'"45972 "text": "summary is too short: 'my summary'"
@@ -46983,10 +46151,6 @@ test-classic_0_all.snap: pass
46983 "manual_review": false,46151 "manual_review": false,
46984 "text": "OK"46152 "text": "OK"
46985 },46153 },
46986 "lint-snap-v2:snap_type_valid": {
46987 "manual_review": false,
46988 "text": "OK"
46989 },
46990 "lint-snap-v2:summary": {46154 "lint-snap-v2:summary": {
46991 "manual_review": false,46155 "manual_review": false,
46992 "text": "OK"46156 "text": "OK"
@@ -124079,10 +123243,6 @@ hello-world_25.snap: FAIL
124079 "manual_review": false,123243 "manual_review": false,
124080 "text": "OK"123244 "text": "OK"
124081 },123245 },
124082 "lint-snap-v2:snap_type_valid": {
124083 "manual_review": false,
124084 "text": "OK"
124085 },
124086 "lint-snap-v2:summary": {123246 "lint-snap-v2:summary": {
124087 "manual_review": false,123247 "manual_review": false,
124088 "text": "OK"123248 "text": "OK"
@@ -124386,10 +123546,6 @@ hello-world_25.snap: FAIL
124386 "manual_review": false,123546 "manual_review": false,
124387 "text": "OK"123547 "text": "OK"
124388 },123548 },
124389 "lint-snap-v2:snap_type_valid": {
124390 "manual_review": false,
124391 "text": "OK"
124392 },
124393 "lint-snap-v2:summary": {123549 "lint-snap-v2:summary": {
124394 "manual_review": false,123550 "manual_review": false,
124395 "text": "OK"123551 "text": "OK"

Subscribers

People subscribed via source and target branches