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

Proposed by Jorge Sancho Larraz
Status: Merged
Merged at revision: c3a28787e76c59484ea433a10cca1dc114a3ca16
Proposed branch: ~jslarraz/review-tools:schema-add-version
Merge into: review-tools:master
Diff against target: 2675 lines (+64/-1049)
8 files modified
check-names.list (+0/-1)
reviewtools/schemas/snap.json (+8/-1)
reviewtools/sr_common.py (+0/-15)
reviewtools/sr_lint.py (+0/-22)
reviewtools/tests/schemas/test_schema_snap.py (+56/-1)
reviewtools/tests/test_sr_common.py (+0/-30)
reviewtools/tests/test_sr_lint.py (+0/-135)
tests/test.sh.expected (+0/-844)
Reviewer Review Type Date Requested Status
Alex Murray Approve
Review via email: mp+466176@code.launchpad.net

Commit message

many: perform snap version validation via schema

To post a comment you must log in.
Revision history for this message
Jorge Sancho Larraz (jslarraz) wrote :

reviewtools/tests/schemas/test_schema_against_store.py validates the current snap.yaml schema against all snaps in the store. No additional errors have been found in this version

Revision history for this message
Jorge Sancho Larraz (jslarraz) wrote (last edit ):

Add inline comment

Revision history for this message
Alex Murray (alexmurray) wrote :

LGTM - thanks @jslarraz.

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 f8491a6..8b3b789 100644
--- a/check-names.list
+++ b/check-names.list
@@ -153,7 +153,6 @@ lint-snap-v2:unknown_stop_mode|
153lint-snap-v2:valid_contents_for_architecture|153lint-snap-v2:valid_contents_for_architecture|
154lint-snap-v2:valid_unicode|154lint-snap-v2:valid_unicode|
155lint-snap-v2:vcs_files|155lint-snap-v2:vcs_files|
156lint-snap-v2:version_valid|
157lint-snap-v2:watchdog-timeout_range|156lint-snap-v2:watchdog-timeout_range|
158lint-snap-v2:watchdog-timeout|157lint-snap-v2:watchdog-timeout|
159security-snap-v2:daemon_with_browser-support|158security-snap-v2:daemon_with_browser-support|
diff --git a/reviewtools/schemas/snap.json b/reviewtools/schemas/snap.json
index 3c239c4..471202e 100644
--- a/reviewtools/schemas/snap.json
+++ b/reviewtools/schemas/snap.json
@@ -8,7 +8,14 @@
8 "pattern": "^(?:[a-z0-9]|(?<=[a-z0-9])-)*[a-z](?:[a-z0-9]|-(?=[a-z0-9]))*$",8 "pattern": "^(?:[a-z0-9]|(?<=[a-z0-9])-)*[a-z](?:[a-z0-9]|-(?=[a-z0-9]))*$",
9 "minLength": 2,9 "minLength": 2,
10 "maxLength": 4010 "maxLength": 40
11 },
12 "version": {
13 "description": "A user facing version to display.",
14 "$comment": "See https://forum.snapcraft.io/t/3974",
15 "type": ["string", "number"],
16 "pattern": "^[a-zA-Z0-9](?:[a-zA-Z0-9:.+~-]*[a-zA-Z0-9+~])?$",
17 "maxLength": 32
11 }18 }
12 },19 },
13 "required": ["name"]20 "required": ["name", "version"]
14}21}
diff --git a/reviewtools/sr_common.py b/reviewtools/sr_common.py
index fbd0472..a3a1132 100644
--- a/reviewtools/sr_common.py
+++ b/reviewtools/sr_common.py
@@ -575,21 +575,6 @@ class SnapReview(Review):
575 return False575 return False
576 return True576 return True
577577
578 def _verify_pkgversion(self, v):
579 """Verify package version"""
580 if not isinstance(v, (str, int, float)):
581 return False
582
583 # see https://forum.snapcraft.io/t/3974, or
584 # http://people.canonical.com/~john/snap_version_validator_regexp.svg
585 _re_valid_version = re.compile(
586 r"^[a-zA-Z0-9](?:[a-zA-Z0-9:.+~-]{0,30}[a-zA-Z0-9+~])?$"
587 )
588 if _re_valid_version.match(str(v)):
589 return True
590
591 return False
592
593 def _verify_appname(self, n):578 def _verify_appname(self, n):
594 """Verify app name"""579 """Verify app name"""
595 pat = re.compile(r"^[a-zA-Z0-9](?:-?[a-zA-Z0-9])*$")580 pat = re.compile(r"^[a-zA-Z0-9](?:-?[a-zA-Z0-9])*$")
diff --git a/reviewtools/sr_lint.py b/reviewtools/sr_lint.py
index 3ddaf3f..87d02c6 100644
--- a/reviewtools/sr_lint.py
+++ b/reviewtools/sr_lint.py
@@ -224,28 +224,6 @@ class SnapReviewLint(SnapReview):
224 manual_review = True224 manual_review = True
225 self._add_result(t, n, s, manual_review=manual_review)225 self._add_result(t, n, s, manual_review=manual_review)
226226
227 def check_version(self):
228 """Check package version"""
229 t = "info"
230 n = self._get_check_name("version_valid")
231 s = "OK"
232 if "version" not in self.snap_yaml:
233 t = "error"
234 s = "could not find 'version' in yaml"
235 elif (
236 isinstance(self.snap_yaml["version"], (str, int, float))
237 and len(str(self.snap_yaml["version"])) > 32
238 ):
239 t = "error"
240 s = (
241 "malformed 'version': '%s' (should be < 32 characters)"
242 % self.snap_yaml["version"]
243 )
244 elif not self._verify_pkgversion(self.snap_yaml["version"]):
245 t = "error"
246 s = "malformed 'version': '%s'" % self.snap_yaml["version"]
247 self._add_result(t, n, s)
248
249 def check_valid_hook(self):227 def check_valid_hook(self):
250 """Check valid hook"""228 """Check valid hook"""
251 hooks = glob.glob("%s/meta/hooks/*" % self._get_unpack_dir())229 hooks = glob.glob("%s/meta/hooks/*" % self._get_unpack_dir())
diff --git a/reviewtools/tests/schemas/test_schema_snap.py b/reviewtools/tests/schemas/test_schema_snap.py
index 315b278..bcc55da 100644
--- a/reviewtools/tests/schemas/test_schema_snap.py
+++ b/reviewtools/tests/schemas/test_schema_snap.py
@@ -2,7 +2,6 @@ from reviewtools.tests.schemas.test_schema_base import TestSchemaBase
22
33
4class TestSchemaSnap(TestSchemaBase):4class TestSchemaSnap(TestSchemaBase):
5
6 schema_file = "reviewtools/schemas/snap.json"5 schema_file = "reviewtools/schemas/snap.json"
76
8 def setUp(self):7 def setUp(self):
@@ -65,3 +64,59 @@ class TestSchemaSnap(TestSchemaBase):
65 with self.subTest(value=value):64 with self.subTest(value=value):
66 error = error.replace("{value}", str(value)) if error else error65 error = error.replace("{value}", str(value)) if error else error
67 self._test_value("name", value, error)66 self._test_value("name", value, error)
67
68 def test_version(self):
69 for value, error in [
70 # test_check_version TODO: shouldn't we limit it to strings?
71 (1, None),
72 # test_check_version1 - integer TODO: should we limit it to strings?
73 (1, None),
74 # test_check_version2 - float
75 (1.1, None),
76 # test_check_version3 - MAJOR.MINOR.MICRO
77 ("1.0.1", None),
78 # test_check_version4 - str
79 ("1.0a", None),
80 # test_check_version5 - alpha
81 ("a.b", None),
82 # test_check_version_bad - bad
83 ("foo?bar", "'{value}' does not match "),
84 # test_check_version_bad2 - empty
85 ("", "'{value}' does not match "),
86 # test_check_version_bad3 - list
87 ([], "{value} is not of type 'string', 'number'"),
88 # test_check_version_bad4 - dict
89 ({}, "{value} is not of type 'string', 'number'"),
90 # test_check_version_bad5 - too long
91 ("1.0.20160315-alpha2-git.c6fadc4+test1", "'{value}' is too long"),
92 # test_check_version_missing
93 (None, "'version' is a required property"),
94 # ### startswith -
95 ("-aaa", "'{value}' does not match "),
96 # test_verify_pkgversion OK
97 ("0", None),
98 ("v1.0", None),
99 ("0.12+16.04.20160126-0ubuntu1", None),
100 ("1:6.0.1+r16-3", None),
101 ("1.0~", None),
102 ("1.0+", None),
103 ("README.~1~", None),
104 ("a+++++++++++++++++++++++++++++++", None),
105 ("AZaz:.+~-123", None),
106 # test_verify_pkgversion NOK
107 ("~foo", "'{value}' does not match "),
108 ("+foo", "'{value}' does not match "),
109 ("foo:", "'{value}' does not match "),
110 ("foo.", "'{value}' does not match "),
111 ("foo-", "'{value}' does not match "),
112 ("horrible_underscores", "'{value}' does not match "),
113 ("foo($bar^baz$)meep", "'{value}' does not match "),
114 ("árbol", "'{value}' does not match "),
115 ("日本語", "'{value}' does not match "),
116 ("한글", "'{value}' does not match "),
117 ("ру́сский язы́к", "'{value}' does not match "),
118 ("~foo$bar:", "'{value}' does not match "),
119 ]:
120 with self.subTest(value=value):
121 error = error.replace("{value}", str(value)) if error else error
122 self._test_value("version", value, error)
diff --git a/reviewtools/tests/test_sr_common.py b/reviewtools/tests/test_sr_common.py
index 4a95809..541cea9 100644
--- a/reviewtools/tests/test_sr_common.py
+++ b/reviewtools/tests/test_sr_common.py
@@ -23,36 +23,6 @@ class TestSnapReviewCommon(sr_tests.TestSnapReview):
23 super().setUp()23 super().setUp()
24 self.review = SnapReview("app.snap", "sr_common_review_type")24 self.review = SnapReview("app.snap", "sr_common_review_type")
2525
26 def test_verify_pkgversion(self):
27 """Check _verify_pkgversion"""
28 for ok in [
29 "0",
30 "v1.0",
31 "0.12+16.04.20160126-0ubuntu1",
32 "1:6.0.1+r16-3",
33 "1.0~",
34 "1.0+",
35 "README.~1~",
36 "a+++++++++++++++++++++++++++++++",
37 "AZaz:.+~-123",
38 ]:
39 self.assertTrue(self.review._verify_pkgversion(ok))
40 for nok in [
41 "~foo",
42 "+foo",
43 "foo:",
44 "foo.",
45 "foo-",
46 "horrible_underscores",
47 "foo($bar^baz$)meep",
48 "árbol",
49 "日本語",
50 "한글",
51 "ру́сский язы́к",
52 "~foo$bar:",
53 ]:
54 self.assertFalse(self.review._verify_pkgversion(nok))
55
56 def test_no_duplicated_yaml_keys(self):26 def test_no_duplicated_yaml_keys(self):
57 """Check _no_duplicated_yaml_keys"""27 """Check _no_duplicated_yaml_keys"""
58 b1 = """28 b1 = """
diff --git a/reviewtools/tests/test_sr_lint.py b/reviewtools/tests/test_sr_lint.py
index 78f84a8..44f72dc 100644
--- a/reviewtools/tests/test_sr_lint.py
+++ b/reviewtools/tests/test_sr_lint.py
@@ -143,141 +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_version(self):
147 """Test check_version"""
148 self.set_test_snap_yaml("version", 1)
149 c = SnapReviewLint(self.test_name)
150 c.check_version()
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_version1(self):
156 """Test check_version - integer"""
157 self.set_test_snap_yaml("version", 1)
158 c = SnapReviewLint(self.test_name)
159 c.check_version()
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_version2(self):
165 """Test check_version - float"""
166 self.set_test_snap_yaml("version", 1.0)
167 c = SnapReviewLint(self.test_name)
168 c.check_version()
169 r = c.review_report
170 expected_counts = {"info": 1, "warn": 0, "error": 0}
171 self.check_results(r, expected_counts)
172
173 def test_check_version3(self):
174 """Test check_version - MAJOR.MINOR.MICRO"""
175 self.set_test_snap_yaml("version", "1.0.1")
176 c = SnapReviewLint(self.test_name)
177 c.check_version()
178 r = c.review_report
179 expected_counts = {"info": 1, "warn": 0, "error": 0}
180 self.check_results(r, expected_counts)
181
182 def test_check_version4(self):
183 """Test check_version - str"""
184 self.set_test_snap_yaml("version", "1.0a")
185 c = SnapReviewLint(self.test_name)
186 c.check_version()
187 r = c.review_report
188 expected_counts = {"info": 1, "warn": 0, "error": 0}
189 self.check_results(r, expected_counts)
190
191 def test_check_version5(self):
192 """Test check_version - alpha"""
193 self.set_test_snap_yaml("version", "a.b")
194 c = SnapReviewLint(self.test_name)
195 c.check_version()
196 r = c.review_report
197 expected_counts = {"info": 1, "warn": 0, "error": 0}
198 self.check_results(r, expected_counts)
199
200 def test_check_version_bad(self):
201 """Test check_version - bad"""
202 self.set_test_snap_yaml("version", "foo?bar")
203 c = SnapReviewLint(self.test_name)
204 c.check_version()
205 r = c.review_report
206 expected_counts = {"info": None, "warn": 0, "error": 1}
207 self.check_results(r, expected_counts)
208
209 def test_check_version_bad2(self):
210 """Test check_version - empty"""
211 self.set_test_snap_yaml("version", "")
212 c = SnapReviewLint(self.test_name)
213 c.check_version()
214 r = c.review_report
215 expected_counts = {"info": None, "warn": 0, "error": 1}
216 self.check_results(r, expected_counts)
217
218 def test_check_version_bad3(self):
219 """Test check_version - list"""
220 self.set_test_snap_yaml("version", [])
221 c = SnapReviewLint(self.test_name)
222 c.check_version()
223 r = c.review_report
224 expected_counts = {"info": None, "warn": 0, "error": 1}
225 self.check_results(r, expected_counts)
226
227 def test_check_version_bad4(self):
228 """Test check_version - dict"""
229 self.set_test_snap_yaml("version", {})
230 c = SnapReviewLint(self.test_name)
231 c.check_version()
232 r = c.review_report
233 expected_counts = {"info": None, "warn": 0, "error": 1}
234 self.check_results(r, expected_counts)
235
236 def test_check_version_bad5(self):
237 """Test check_version - too long"""
238 self.set_test_snap_yaml("version", "1.0.20160315-alpha2-git.c6fadc4+test1")
239 c = SnapReviewLint(self.test_name)
240 c.check_version()
241 r = c.review_report
242 expected_counts = {"info": None, "warn": 0, "error": 1}
243 self.check_results(r, expected_counts)
244
245 def test_check_version_missing(self):
246 """Test check_version - missing"""
247 self.set_test_snap_yaml("version", None)
248 c = SnapReviewLint(self.test_name)
249 c.check_version()
250 r = c.review_report
251 expected_counts = {"info": None, "warn": 0, "error": 1}
252 self.check_results(r, expected_counts)
253
254 def test_check_type(self):
255 """Test check_type - unspecified"""
256 self.set_test_snap_yaml("type", None)
257 c = SnapReviewLint(self.test_name)
258 c.check_type()
259 r = c.review_report
260 expected_counts = {"info": 1, "warn": 0, "error": 0}
261 self.check_results(r, expected_counts)
262
263 def test_check_type_app(self):
264 """Test check_type - app"""
265 self.set_test_snap_yaml("type", "app")
266 c = SnapReviewLint(self.test_name)
267 c.check_type()
268 r = c.review_report
269 expected_counts = {"info": 1, "warn": 0, "error": 0}
270 self.check_results(r, expected_counts)
271
272 def test_check_type_framework(self):
273 """Test check_type - framework"""
274 self.set_test_snap_yaml("type", "framework")
275 c = SnapReviewLint(self.test_name)
276 c.check_type()
277 r = c.review_report
278 expected_counts = {"info": 0, "warn": 0, "error": 1}
279 self.check_results(r, expected_counts)
280
281 def test_check_type_redflagged(self):146 def test_check_type_redflagged(self):
282 """Test check_type_redflagged - unspecified"""147 """Test check_type_redflagged - unspecified"""
283 self.set_test_snap_yaml("type", None)148 self.set_test_snap_yaml("type", None)
diff --git a/tests/test.sh.expected b/tests/test.sh.expected
index 8c7535c..f11f507 100644
--- a/tests/test.sh.expected
+++ b/tests/test.sh.expected
@@ -90,10 +90,6 @@ bare_1.0_all.snap: pass
90 "lint-snap-v2:vcs_files": {90 "lint-snap-v2:vcs_files": {
91 "manual_review": false,91 "manual_review": false,
92 "text": "OK"92 "text": "OK"
93 },
94 "lint-snap-v2:version_valid": {
95 "manual_review": false,
96 "text": "OK"
97 }93 }
98 },94 },
99 "warn": {}95 "warn": {}
@@ -201,10 +197,6 @@ bare_1.0_all.snap: pass
201 "lint-snap-v2:vcs_files": {197 "lint-snap-v2:vcs_files": {
202 "manual_review": false,198 "manual_review": false,
203 "text": "OK"199 "text": "OK"
204 },
205 "lint-snap-v2:version_valid": {
206 "manual_review": false,
207 "text": "OK"
208 }200 }
209 },201 },
210 "warn": {}202 "warn": {}
@@ -357,10 +349,6 @@ busybox-static-mvo_2.snap: pass
357 "lint-snap-v2:vcs_files": {349 "lint-snap-v2:vcs_files": {
358 "manual_review": false,350 "manual_review": false,
359 "text": "OK"351 "text": "OK"
360 },
361 "lint-snap-v2:version_valid": {
362 "manual_review": false,
363 "text": "OK"
364 }352 }
365 },353 },
366 "warn": {}354 "warn": {}
@@ -512,10 +500,6 @@ busybox-static-mvo_2.snap: pass
512 "lint-snap-v2:vcs_files": {500 "lint-snap-v2:vcs_files": {
513 "manual_review": false,501 "manual_review": false,
514 "text": "OK"502 "text": "OK"
515 },
516 "lint-snap-v2:version_valid": {
517 "manual_review": false,
518 "text": "OK"
519 }503 }
520 },504 },
521 "warn": {}505 "warn": {}
@@ -798,10 +782,6 @@ chrome-test_52.0.2743.116-1+test1_amd64.snap: FAIL
798 "lint-snap-v2:vcs_files": {782 "lint-snap-v2:vcs_files": {
799 "manual_review": false,783 "manual_review": false,
800 "text": "OK"784 "text": "OK"
801 },
802 "lint-snap-v2:version_valid": {
803 "manual_review": false,
804 "text": "OK"
805 }785 }
806 },786 },
807 "warn": {}787 "warn": {}
@@ -1075,10 +1055,6 @@ chrome-test_52.0.2743.116-1+test1_amd64.snap: FAIL
1075 "lint-snap-v2:vcs_files": {1055 "lint-snap-v2:vcs_files": {
1076 "manual_review": false,1056 "manual_review": false,
1077 "text": "OK"1057 "text": "OK"
1078 },
1079 "lint-snap-v2:version_valid": {
1080 "manual_review": false,
1081 "text": "OK"
1082 }1058 }
1083 },1059 },
1084 "warn": {}1060 "warn": {}
@@ -1235,10 +1211,6 @@ chromium-lzo_1.snap: pass
1235 "lint-snap-v2:vcs_files": {1211 "lint-snap-v2:vcs_files": {
1236 "manual_review": false,1212 "manual_review": false,
1237 "text": "OK"1213 "text": "OK"
1238 },
1239 "lint-snap-v2:version_valid": {
1240 "manual_review": false,
1241 "text": "OK"
1242 }1214 }
1243 },1215 },
1244 "warn": {}1216 "warn": {}
@@ -1390,10 +1362,6 @@ chromium-lzo_1.snap: pass
1390 "lint-snap-v2:vcs_files": {1362 "lint-snap-v2:vcs_files": {
1391 "manual_review": false,1363 "manual_review": false,
1392 "text": "OK"1364 "text": "OK"
1393 },
1394 "lint-snap-v2:version_valid": {
1395 "manual_review": false,
1396 "text": "OK"
1397 }1365 }
1398 },1366 },
1399 "warn": {}1367 "warn": {}
@@ -1615,10 +1583,6 @@ classic_16.04+test1_all.snap: FAIL
1615 "lint-snap-v2:vcs_files": {1583 "lint-snap-v2:vcs_files": {
1616 "manual_review": false,1584 "manual_review": false,
1617 "text": "OK"1585 "text": "OK"
1618 },
1619 "lint-snap-v2:version_valid": {
1620 "manual_review": false,
1621 "text": "OK"
1622 }1586 }
1623 },1587 },
1624 "warn": {}1588 "warn": {}
@@ -1839,10 +1803,6 @@ classic_16.04+test1_all.snap: FAIL
1839 "lint-snap-v2:vcs_files": {1803 "lint-snap-v2:vcs_files": {
1840 "manual_review": false,1804 "manual_review": false,
1841 "text": "OK"1805 "text": "OK"
1842 },
1843 "lint-snap-v2:version_valid": {
1844 "manual_review": false,
1845 "text": "OK"
1846 }1806 }
1847 },1807 },
1848 "warn": {}1808 "warn": {}
@@ -2024,10 +1984,6 @@ devmode-home_0.1_amd64.snap: pass
2024 "lint-snap-v2:vcs_files": {1984 "lint-snap-v2:vcs_files": {
2025 "manual_review": false,1985 "manual_review": false,
2026 "text": "OK"1986 "text": "OK"
2027 },
2028 "lint-snap-v2:version_valid": {
2029 "manual_review": false,
2030 "text": "OK"
2031 }1987 }
2032 },1988 },
2033 "warn": {}1989 "warn": {}
@@ -2196,10 +2152,6 @@ devmode-home_0.1_amd64.snap: pass
2196 "lint-snap-v2:vcs_files": {2152 "lint-snap-v2:vcs_files": {
2197 "manual_review": false,2153 "manual_review": false,
2198 "text": "OK"2154 "text": "OK"
2199 },
2200 "lint-snap-v2:version_valid": {
2201 "manual_review": false,
2202 "text": "OK"
2203 }2155 }
2204 },2156 },
2205 "warn": {}2157 "warn": {}
@@ -2566,10 +2518,6 @@ firefox_48.0+build2-0ubuntu0.16.04.1+_amd64.snap: FAIL
2566 "lint-snap-v2:vcs_files": {2518 "lint-snap-v2:vcs_files": {
2567 "manual_review": false,2519 "manual_review": false,
2568 "text": "OK"2520 "text": "OK"
2569 },
2570 "lint-snap-v2:version_valid": {
2571 "manual_review": false,
2572 "text": "OK"
2573 }2521 }
2574 },2522 },
2575 "warn": {}2523 "warn": {}
@@ -2931,10 +2879,6 @@ firefox_48.0+build2-0ubuntu0.16.04.1+_amd64.snap: FAIL
2931 "lint-snap-v2:vcs_files": {2879 "lint-snap-v2:vcs_files": {
2932 "manual_review": false,2880 "manual_review": false,
2933 "text": "OK"2881 "text": "OK"
2934 },
2935 "lint-snap-v2:version_valid": {
2936 "manual_review": false,
2937 "text": "OK"
2938 }2882 }
2939 },2883 },
2940 "warn": {}2884 "warn": {}
@@ -3058,10 +3002,6 @@ gke-kernel_4.15.0-1027.28~16.04.1_amd64.snap: pass
3058 "lint-snap-v2:vcs_files": {3002 "lint-snap-v2:vcs_files": {
3059 "manual_review": false,3003 "manual_review": false,
3060 "text": "OK"3004 "text": "OK"
3061 },
3062 "lint-snap-v2:version_valid": {
3063 "manual_review": false,
3064 "text": "OK"
3065 }3005 }
3066 },3006 },
3067 "warn": {}3007 "warn": {}
@@ -3172,10 +3112,6 @@ gke-kernel_4.15.0-1027.28~16.04.1_amd64.snap: pass
3172 "lint-snap-v2:vcs_files": {3112 "lint-snap-v2:vcs_files": {
3173 "manual_review": false,3113 "manual_review": false,
3174 "text": "OK"3114 "text": "OK"
3175 },
3176 "lint-snap-v2:version_valid": {
3177 "manual_review": false,
3178 "text": "OK"
3179 }3115 }
3180 },3116 },
3181 "warn": {}3117 "warn": {}
@@ -3291,10 +3227,6 @@ gke-kernel_4.15.0-1069.72_amd64.snap: pass
3291 "lint-snap-v2:vcs_files": {3227 "lint-snap-v2:vcs_files": {
3292 "manual_review": false,3228 "manual_review": false,
3293 "text": "OK"3229 "text": "OK"
3294 },
3295 "lint-snap-v2:version_valid": {
3296 "manual_review": false,
3297 "text": "OK"
3298 }3230 }
3299 },3231 },
3300 "warn": {}3232 "warn": {}
@@ -3405,10 +3337,6 @@ gke-kernel_4.15.0-1069.72_amd64.snap: pass
3405 "lint-snap-v2:vcs_files": {3337 "lint-snap-v2:vcs_files": {
3406 "manual_review": false,3338 "manual_review": false,
3407 "text": "OK"3339 "text": "OK"
3408 },
3409 "lint-snap-v2:version_valid": {
3410 "manual_review": false,
3411 "text": "OK"
3412 }3340 }
3413 },3341 },
3414 "warn": {}3342 "warn": {}
@@ -3687,10 +3615,6 @@ glance_ocata_amd64.snap: pass
3687 "lint-snap-v2:vcs_files": {3615 "lint-snap-v2:vcs_files": {
3688 "manual_review": false,3616 "manual_review": false,
3689 "text": "OK"3617 "text": "OK"
3690 },
3691 "lint-snap-v2:version_valid": {
3692 "manual_review": false,
3693 "text": "OK"
3694 }3618 }
3695 },3619 },
3696 "warn": {}3620 "warn": {}
@@ -3976,10 +3900,6 @@ glance_ocata_amd64.snap: pass
3976 "lint-snap-v2:vcs_files": {3900 "lint-snap-v2:vcs_files": {
3977 "manual_review": false,3901 "manual_review": false,
3978 "text": "OK"3902 "text": "OK"
3979 },
3980 "lint-snap-v2:version_valid": {
3981 "manual_review": false,
3982 "text": "OK"
3983 }3903 }
3984 },3904 },
3985 "warn": {}3905 "warn": {}
@@ -4306,10 +4226,6 @@ hello-world_25.snap: pass
4306 "lint-snap-v2:vcs_files": {4226 "lint-snap-v2:vcs_files": {
4307 "manual_review": false,4227 "manual_review": false,
4308 "text": "OK"4228 "text": "OK"
4309 },
4310 "lint-snap-v2:version_valid": {
4311 "manual_review": false,
4312 "text": "OK"
4313 }4229 }
4314 },4230 },
4315 "warn": {}4231 "warn": {}
@@ -4601,10 +4517,6 @@ hello-world_25.snap: pass
4601 "lint-snap-v2:vcs_files": {4517 "lint-snap-v2:vcs_files": {
4602 "manual_review": false,4518 "manual_review": false,
4603 "text": "OK"4519 "text": "OK"
4604 },
4605 "lint-snap-v2:version_valid": {
4606 "manual_review": false,
4607 "text": "OK"
4608 }4520 }
4609 },4521 },
4610 "warn": {}4522 "warn": {}
@@ -4744,10 +4656,6 @@ linux-generic-bbb_4.4.0-140-1_armhf.snap: pass
4744 "lint-snap-v2:vcs_files": {4656 "lint-snap-v2:vcs_files": {
4745 "manual_review": false,4657 "manual_review": false,
4746 "text": "OK"4658 "text": "OK"
4747 },
4748 "lint-snap-v2:version_valid": {
4749 "manual_review": false,
4750 "text": "OK"
4751 }4659 }
4752 },4660 },
4753 "warn": {}4661 "warn": {}
@@ -4858,10 +4766,6 @@ linux-generic-bbb_4.4.0-140-1_armhf.snap: pass
4858 "lint-snap-v2:vcs_files": {4766 "lint-snap-v2:vcs_files": {
4859 "manual_review": false,4767 "manual_review": false,
4860 "text": "OK"4768 "text": "OK"
4861 },
4862 "lint-snap-v2:version_valid": {
4863 "manual_review": false,
4864 "text": "OK"
4865 }4769 }
4866 },4770 },
4867 "warn": {}4771 "warn": {}
@@ -5006,10 +4910,6 @@ minimumsize_0.1_amd64.snap: pass
5006 "lint-snap-v2:vcs_files": {4910 "lint-snap-v2:vcs_files": {
5007 "manual_review": false,4911 "manual_review": false,
5008 "text": "OK"4912 "text": "OK"
5009 },
5010 "lint-snap-v2:version_valid": {
5011 "manual_review": false,
5012 "text": "OK"
5013 }4913 }
5014 },4914 },
5015 "warn": {}4915 "warn": {}
@@ -5149,10 +5049,6 @@ minimumsize_0.1_amd64.snap: pass
5149 "lint-snap-v2:vcs_files": {5049 "lint-snap-v2:vcs_files": {
5150 "manual_review": false,5050 "manual_review": false,
5151 "text": "OK"5051 "text": "OK"
5152 },
5153 "lint-snap-v2:version_valid": {
5154 "manual_review": false,
5155 "text": "OK"
5156 }5052 }
5157 },5053 },
5158 "warn": {}5054 "warn": {}
@@ -5321,10 +5217,6 @@ network-manager_1.10.6-2ubuntu1.0+dbce8fd2_amd64.snap: pass
5321 "lint-snap-v2:vcs_files": {5217 "lint-snap-v2:vcs_files": {
5322 "manual_review": false,5218 "manual_review": false,
5323 "text": "OK"5219 "text": "OK"
5324 },
5325 "lint-snap-v2:version_valid": {
5326 "manual_review": false,
5327 "text": "OK"
5328 }5220 }
5329 },5221 },
5330 "warn": {}5222 "warn": {}
@@ -5492,10 +5384,6 @@ network-manager_1.10.6-2ubuntu1.0+dbce8fd2_amd64.snap: pass
5492 "lint-snap-v2:vcs_files": {5384 "lint-snap-v2:vcs_files": {
5493 "manual_review": false,5385 "manual_review": false,
5494 "text": "OK"5386 "text": "OK"
5495 },
5496 "lint-snap-v2:version_valid": {
5497 "manual_review": false,
5498 "text": "OK"
5499 }5387 }
5500 },5388 },
5501 "warn": {}5389 "warn": {}
@@ -5733,10 +5621,6 @@ network-manager_1.2.2-1+test1_amd64.snap: FAIL
5733 "lint-snap-v2:vcs_files": {5621 "lint-snap-v2:vcs_files": {
5734 "manual_review": false,5622 "manual_review": false,
5735 "text": "OK"5623 "text": "OK"
5736 },
5737 "lint-snap-v2:version_valid": {
5738 "manual_review": false,
5739 "text": "OK"
5740 }5624 }
5741 },5625 },
5742 "warn": {}5626 "warn": {}
@@ -5967,10 +5851,6 @@ network-manager_1.2.2-1+test1_amd64.snap: FAIL
5967 "lint-snap-v2:vcs_files": {5851 "lint-snap-v2:vcs_files": {
5968 "manual_review": false,5852 "manual_review": false,
5969 "text": "OK"5853 "text": "OK"
5970 },
5971 "lint-snap-v2:version_valid": {
5972 "manual_review": false,
5973 "text": "OK"
5974 }5854 }
5975 },5855 },
5976 "warn": {}5856 "warn": {}
@@ -6175,10 +6055,6 @@ nix-example-jormungandr_f7xva0vh9fzv20vhyr121yd6ahplqh9v_amd64.snap: pass
6175 "lint-snap-v2:vcs_files": {6055 "lint-snap-v2:vcs_files": {
6176 "manual_review": false,6056 "manual_review": false,
6177 "text": "OK"6057 "text": "OK"
6178 },
6179 "lint-snap-v2:version_valid": {
6180 "manual_review": false,
6181 "text": "OK"
6182 }6058 }
6183 },6059 },
6184 "warn": {}6060 "warn": {}
@@ -6378,10 +6254,6 @@ nix-example-jormungandr_f7xva0vh9fzv20vhyr121yd6ahplqh9v_amd64.snap: pass
6378 "lint-snap-v2:vcs_files": {6254 "lint-snap-v2:vcs_files": {
6379 "manual_review": false,6255 "manual_review": false,
6380 "text": "OK"6256 "text": "OK"
6381 },
6382 "lint-snap-v2:version_valid": {
6383 "manual_review": false,
6384 "text": "OK"
6385 }6257 }
6386 },6258 },
6387 "warn": {}6259 "warn": {}
@@ -6675,10 +6547,6 @@ nix-example_g7qmi8r4qwws6fhwschfb8aib5wl0x1q_amd64.snap: pass
6675 "lint-snap-v2:vcs_files": {6547 "lint-snap-v2:vcs_files": {
6676 "manual_review": false,6548 "manual_review": false,
6677 "text": "OK"6549 "text": "OK"
6678 },
6679 "lint-snap-v2:version_valid": {
6680 "manual_review": false,
6681 "text": "OK"
6682 }6550 }
6683 },6551 },
6684 "warn": {}6552 "warn": {}
@@ -6963,10 +6831,6 @@ nix-example_g7qmi8r4qwws6fhwschfb8aib5wl0x1q_amd64.snap: pass
6963 "lint-snap-v2:vcs_files": {6831 "lint-snap-v2:vcs_files": {
6964 "manual_review": false,6832 "manual_review": false,
6965 "text": "OK"6833 "text": "OK"
6966 },
6967 "lint-snap-v2:version_valid": {
6968 "manual_review": false,
6969 "text": "OK"
6970 }6834 }
6971 },6835 },
6972 "warn": {}6836 "warn": {}
@@ -7148,10 +7012,6 @@ notify-send_1_amd64.snap: pass
7148 "lint-snap-v2:vcs_files": {7012 "lint-snap-v2:vcs_files": {
7149 "manual_review": false,7013 "manual_review": false,
7150 "text": "OK"7014 "text": "OK"
7151 },
7152 "lint-snap-v2:version_valid": {
7153 "manual_review": false,
7154 "text": "OK"
7155 }7015 }
7156 },7016 },
7157 "warn": {}7017 "warn": {}
@@ -7328,10 +7188,6 @@ notify-send_1_amd64.snap: pass
7328 "lint-snap-v2:vcs_files": {7188 "lint-snap-v2:vcs_files": {
7329 "manual_review": false,7189 "manual_review": false,
7330 "text": "OK"7190 "text": "OK"
7331 },
7332 "lint-snap-v2:version_valid": {
7333 "manual_review": false,
7334 "text": "OK"
7335 }7191 }
7336 },7192 },
7337 "warn": {}7193 "warn": {}
@@ -7451,10 +7307,6 @@ pc-kernel_4.15.0-44.46_i386.snap: pass
7451 "lint-snap-v2:vcs_files": {7307 "lint-snap-v2:vcs_files": {
7452 "manual_review": false,7308 "manual_review": false,
7453 "text": "OK"7309 "text": "OK"
7454 },
7455 "lint-snap-v2:version_valid": {
7456 "manual_review": false,
7457 "text": "OK"
7458 }7310 }
7459 },7311 },
7460 "warn": {}7312 "warn": {}
@@ -7565,10 +7417,6 @@ pc-kernel_4.15.0-44.46_i386.snap: pass
7565 "lint-snap-v2:vcs_files": {7417 "lint-snap-v2:vcs_files": {
7566 "manual_review": false,7418 "manual_review": false,
7567 "text": "OK"7419 "text": "OK"
7568 },
7569 "lint-snap-v2:version_valid": {
7570 "manual_review": false,
7571 "text": "OK"
7572 }7420 }
7573 },7421 },
7574 "warn": {}7422 "warn": {}
@@ -7684,10 +7532,6 @@ pc-kernel_4.4.0-141.167_amd64.snap: pass
7684 "lint-snap-v2:vcs_files": {7532 "lint-snap-v2:vcs_files": {
7685 "manual_review": false,7533 "manual_review": false,
7686 "text": "OK"7534 "text": "OK"
7687 },
7688 "lint-snap-v2:version_valid": {
7689 "manual_review": false,
7690 "text": "OK"
7691 }7535 }
7692 },7536 },
7693 "warn": {}7537 "warn": {}
@@ -7798,10 +7642,6 @@ pc-kernel_4.4.0-141.167_amd64.snap: pass
7798 "lint-snap-v2:vcs_files": {7642 "lint-snap-v2:vcs_files": {
7799 "manual_review": false,7643 "manual_review": false,
7800 "text": "OK"7644 "text": "OK"
7801 },
7802 "lint-snap-v2:version_valid": {
7803 "manual_review": false,
7804 "text": "OK"
7805 }7645 }
7806 },7646 },
7807 "warn": {}7647 "warn": {}
@@ -7909,10 +7749,6 @@ pc.canonical_5.snap: pass
7909 "lint-snap-v2:vcs_files": {7749 "lint-snap-v2:vcs_files": {
7910 "manual_review": false,7750 "manual_review": false,
7911 "text": "OK"7751 "text": "OK"
7912 },
7913 "lint-snap-v2:version_valid": {
7914 "manual_review": false,
7915 "text": "OK"
7916 }7752 }
7917 },7753 },
7918 "warn": {}7754 "warn": {}
@@ -8015,10 +7851,6 @@ pc.canonical_5.snap: pass
8015 "lint-snap-v2:vcs_files": {7851 "lint-snap-v2:vcs_files": {
8016 "manual_review": false,7852 "manual_review": false,
8017 "text": "OK"7853 "text": "OK"
8018 },
8019 "lint-snap-v2:version_valid": {
8020 "manual_review": false,
8021 "text": "OK"
8022 }7854 }
8023 },7855 },
8024 "warn": {}7856 "warn": {}
@@ -9228,10 +9060,6 @@ quagga_1.0.20160315-alpha2-git.c6fadc4+_amd64.snap: pass
9228 "lint-snap-v2:vcs_files": {9060 "lint-snap-v2:vcs_files": {
9229 "manual_review": false,9061 "manual_review": false,
9230 "text": "OK"9062 "text": "OK"
9231 },
9232 "lint-snap-v2:version_valid": {
9233 "manual_review": false,
9234 "text": "OK"
9235 }9063 }
9236 },9064 },
9237 "warn": {}9065 "warn": {}
@@ -10508,10 +10336,6 @@ quagga_1.0.20160315-alpha2-git.c6fadc4+_amd64.snap: pass
10508 "lint-snap-v2:vcs_files": {10336 "lint-snap-v2:vcs_files": {
10509 "manual_review": false,10337 "manual_review": false,
10510 "text": "OK"10338 "text": "OK"
10511 },
10512 "lint-snap-v2:version_valid": {
10513 "manual_review": false,
10514 "text": "OK"
10515 }10339 }
10516 },10340 },
10517 "warn": {}10341 "warn": {}
@@ -10749,10 +10573,6 @@ snap-test-arch-all-warning_1_all.snap: FAIL
10749 "lint-snap-v2:vcs_files": {10573 "lint-snap-v2:vcs_files": {
10750 "manual_review": false,10574 "manual_review": false,
10751 "text": "OK"10575 "text": "OK"
10752 },
10753 "lint-snap-v2:version_valid": {
10754 "manual_review": false,
10755 "text": "OK"
10756 }10576 }
10757 },10577 },
10758 "warn": {}10578 "warn": {}
@@ -10913,10 +10733,6 @@ snap-test-arch-all-warning_1_all.snap: FAIL
10913 "lint-snap-v2:vcs_files": {10733 "lint-snap-v2:vcs_files": {
10914 "manual_review": false,10734 "manual_review": false,
10915 "text": "OK"10735 "text": "OK"
10916 },
10917 "lint-snap-v2:version_valid": {
10918 "manual_review": false,
10919 "text": "OK"
10920 }10736 }
10921 },10737 },
10922 "warn": {}10738 "warn": {}
@@ -11086,10 +10902,6 @@ snappy-debug_20.snap: pass
11086 "lint-snap-v2:vcs_files": {10902 "lint-snap-v2:vcs_files": {
11087 "manual_review": false,10903 "manual_review": false,
11088 "text": "OK"10904 "text": "OK"
11089 },
11090 "lint-snap-v2:version_valid": {
11091 "manual_review": false,
11092 "text": "OK"
11093 }10905 }
11094 },10906 },
11095 "warn": {}10907 "warn": {}
@@ -11254,10 +11066,6 @@ snappy-debug_20.snap: pass
11254 "lint-snap-v2:vcs_files": {11066 "lint-snap-v2:vcs_files": {
11255 "manual_review": false,11067 "manual_review": false,
11256 "text": "OK"11068 "text": "OK"
11257 },
11258 "lint-snap-v2:version_valid": {
11259 "manual_review": false,
11260 "text": "OK"
11261 }11069 }
11262 },11070 },
11263 "warn": {}11071 "warn": {}
@@ -11471,10 +11279,6 @@ snappy-test-iface-attribs_0.1_all.snap: pass
11471 "lint-snap-v2:vcs_files": {11279 "lint-snap-v2:vcs_files": {
11472 "manual_review": false,11280 "manual_review": false,
11473 "text": "OK"11281 "text": "OK"
11474 },
11475 "lint-snap-v2:version_valid": {
11476 "manual_review": false,
11477 "text": "OK"
11478 }11282 }
11479 },11283 },
11480 "warn": {}11284 "warn": {}
@@ -11683,10 +11487,6 @@ snappy-test-iface-attribs_0.1_all.snap: pass
11683 "lint-snap-v2:vcs_files": {11487 "lint-snap-v2:vcs_files": {
11684 "manual_review": false,11488 "manual_review": false,
11685 "text": "OK"11489 "text": "OK"
11686 },
11687 "lint-snap-v2:version_valid": {
11688 "manual_review": false,
11689 "text": "OK"
11690 }11490 }
11691 },11491 },
11692 "warn": {}11492 "warn": {}
@@ -14437,10 +14237,6 @@ test-all-app_1_all.snap: FAIL
14437 "lint-snap-v2:vcs_files": {14237 "lint-snap-v2:vcs_files": {
14438 "manual_review": false,14238 "manual_review": false,
14439 "text": "OK"14239 "text": "OK"
14440 },
14441 "lint-snap-v2:version_valid": {
14442 "manual_review": false,
14443 "text": "OK"
14444 }14240 }
14445 },14241 },
14446 "warn": {}14242 "warn": {}
@@ -17410,10 +17206,6 @@ test-all-app_1_all.snap: FAIL
17410 "lint-snap-v2:vcs_files": {17206 "lint-snap-v2:vcs_files": {
17411 "manual_review": false,17207 "manual_review": false,
17412 "text": "OK"17208 "text": "OK"
17413 },
17414 "lint-snap-v2:version_valid": {
17415 "manual_review": false,
17416 "text": "OK"
17417 }17209 }
17418 },17210 },
17419 "warn": {}17211 "warn": {}
@@ -18239,10 +18031,6 @@ test-all-core_1_all.snap: FAIL
18239 "lint-snap-v2:vcs_files": {18031 "lint-snap-v2:vcs_files": {
18240 "manual_review": false,18032 "manual_review": false,
18241 "text": "OK"18033 "text": "OK"
18242 },
18243 "lint-snap-v2:version_valid": {
18244 "manual_review": false,
18245 "text": "OK"
18246 }18034 }
18247 },18035 },
18248 "warn": {}18036 "warn": {}
@@ -18795,10 +18583,6 @@ test-all-core_1_all.snap: FAIL
18795 "lint-snap-v2:vcs_files": {18583 "lint-snap-v2:vcs_files": {
18796 "manual_review": false,18584 "manual_review": false,
18797 "text": "OK"18585 "text": "OK"
18798 },
18799 "lint-snap-v2:version_valid": {
18800 "manual_review": false,
18801 "text": "OK"
18802 }18586 }
18803 },18587 },
18804 "warn": {}18588 "warn": {}
@@ -19108,10 +18892,6 @@ test-all-gadget_3_all.snap: FAIL
19108 "lint-snap-v2:vcs_files": {18892 "lint-snap-v2:vcs_files": {
19109 "manual_review": false,18893 "manual_review": false,
19110 "text": "OK"18894 "text": "OK"
19111 },
19112 "lint-snap-v2:version_valid": {
19113 "manual_review": false,
19114 "text": "OK"
19115 }18895 }
19116 },18896 },
19117 "warn": {}18897 "warn": {}
@@ -19412,10 +19192,6 @@ test-all-gadget_3_all.snap: FAIL
19412 "lint-snap-v2:vcs_files": {19192 "lint-snap-v2:vcs_files": {
19413 "manual_review": false,19193 "manual_review": false,
19414 "text": "OK"19194 "text": "OK"
19415 },
19416 "lint-snap-v2:version_valid": {
19417 "manual_review": false,
19418 "text": "OK"
19419 }19195 }
19420 },19196 },
19421 "warn": {}19197 "warn": {}
@@ -19579,10 +19355,6 @@ test-app-devnull_1.0_all.snap: FAIL
19579 "lint-snap-v2:vcs_files": {19355 "lint-snap-v2:vcs_files": {
19580 "manual_review": false,19356 "manual_review": false,
19581 "text": "OK"19357 "text": "OK"
19582 },
19583 "lint-snap-v2:version_valid": {
19584 "manual_review": false,
19585 "text": "OK"
19586 }19358 }
19587 },19359 },
19588 "warn": {}19360 "warn": {}
@@ -19740,10 +19512,6 @@ test-app-devnull_1.0_all.snap: FAIL
19740 "lint-snap-v2:vcs_files": {19512 "lint-snap-v2:vcs_files": {
19741 "manual_review": false,19513 "manual_review": false,
19742 "text": "OK"19514 "text": "OK"
19743 },
19744 "lint-snap-v2:version_valid": {
19745 "manual_review": false,
19746 "text": "OK"
19747 }19515 }
19748 },19516 },
19749 "warn": {}19517 "warn": {}
@@ -19944,10 +19712,6 @@ test-bad-desktop-file-icon_1_all.snap: FAIL
19944 "lint-snap-v2:vcs_files": {19712 "lint-snap-v2:vcs_files": {
19945 "manual_review": false,19713 "manual_review": false,
19946 "text": "OK"19714 "text": "OK"
19947 },
19948 "lint-snap-v2:version_valid": {
19949 "manual_review": false,
19950 "text": "OK"
19951 }19715 }
19952 },19716 },
19953 "warn": {}19717 "warn": {}
@@ -20137,10 +19901,6 @@ test-bad-desktop-file-icon_1_all.snap: FAIL
20137 "lint-snap-v2:vcs_files": {19901 "lint-snap-v2:vcs_files": {
20138 "manual_review": false,19902 "manual_review": false,
20139 "text": "OK"19903 "text": "OK"
20140 },
20141 "lint-snap-v2:version_valid": {
20142 "manual_review": false,
20143 "text": "OK"
20144 }19904 }
20145 },19905 },
20146 "warn": {}19906 "warn": {}
@@ -20403,10 +20163,6 @@ test-bad-unicode_0_all.snap: FAIL
20403 "lint-snap-v2:vcs_files": {20163 "lint-snap-v2:vcs_files": {
20404 "manual_review": false,20164 "manual_review": false,
20405 "text": "OK"20165 "text": "OK"
20406 },
20407 "lint-snap-v2:version_valid": {
20408 "manual_review": false,
20409 "text": "OK"
20410 }20166 }
20411 },20167 },
20412 "warn": {}20168 "warn": {}
@@ -20591,10 +20347,6 @@ test-bad-unicode_0_all.snap: FAIL
20591 "lint-snap-v2:vcs_files": {20347 "lint-snap-v2:vcs_files": {
20592 "manual_review": false,20348 "manual_review": false,
20593 "text": "OK"20349 "text": "OK"
20594 },
20595 "lint-snap-v2:version_valid": {
20596 "manual_review": false,
20597 "text": "OK"
20598 }20350 }
20599 },20351 },
20600 "warn": {}20352 "warn": {}
@@ -20726,10 +20478,6 @@ test-base-devnull_1.0_all.snap: FAIL
20726 "lint-snap-v2:vcs_files": {20478 "lint-snap-v2:vcs_files": {
20727 "manual_review": false,20479 "manual_review": false,
20728 "text": "OK"20480 "text": "OK"
20729 },
20730 "lint-snap-v2:version_valid": {
20731 "manual_review": false,
20732 "text": "OK"
20733 }20481 }
20734 },20482 },
20735 "warn": {}20483 "warn": {}
@@ -20843,10 +20591,6 @@ test-base-devnull_1.0_all.snap: FAIL
20843 "lint-snap-v2:vcs_files": {20591 "lint-snap-v2:vcs_files": {
20844 "manual_review": false,20592 "manual_review": false,
20845 "text": "OK"20593 "text": "OK"
20846 },
20847 "lint-snap-v2:version_valid": {
20848 "manual_review": false,
20849 "text": "OK"
20850 }20594 }
20851 },20595 },
20852 "warn": {}20596 "warn": {}
@@ -21021,10 +20765,6 @@ test-base-disallowed_0_all.snap: FAIL
21021 "lint-snap-v2:vcs_files": {20765 "lint-snap-v2:vcs_files": {
21022 "manual_review": false,20766 "manual_review": false,
21023 "text": "OK"20767 "text": "OK"
21024 },
21025 "lint-snap-v2:version_valid": {
21026 "manual_review": false,
21027 "text": "OK"
21028 }20768 }
21029 },20769 },
21030 "warn": {}20770 "warn": {}
@@ -21193,10 +20933,6 @@ test-base-disallowed_0_all.snap: FAIL
21193 "lint-snap-v2:vcs_files": {20933 "lint-snap-v2:vcs_files": {
21194 "manual_review": false,20934 "manual_review": false,
21195 "text": "OK"20935 "text": "OK"
21196 },
21197 "lint-snap-v2:version_valid": {
21198 "manual_review": false,
21199 "text": "OK"
21200 }20936 }
21201 },20937 },
21202 "warn": {}20938 "warn": {}
@@ -21320,10 +21056,6 @@ test-base-missing-mountpoint_1.0_all.snap: FAIL
21320 "lint-snap-v2:vcs_files": {21056 "lint-snap-v2:vcs_files": {
21321 "manual_review": false,21057 "manual_review": false,
21322 "text": "OK"21058 "text": "OK"
21323 },
21324 "lint-snap-v2:version_valid": {
21325 "manual_review": false,
21326 "text": "OK"
21327 }21059 }
21328 },21060 },
21329 "warn": {}21061 "warn": {}
@@ -21432,10 +21164,6 @@ test-base-missing-mountpoint_1.0_all.snap: FAIL
21432 "lint-snap-v2:vcs_files": {21164 "lint-snap-v2:vcs_files": {
21433 "manual_review": false,21165 "manual_review": false,
21434 "text": "OK"21166 "text": "OK"
21435 },
21436 "lint-snap-v2:version_valid": {
21437 "manual_review": false,
21438 "text": "OK"
21439 }21167 }
21440 },21168 },
21441 "warn": {}21169 "warn": {}
@@ -21651,10 +21379,6 @@ test-base-slots-plugs_1.0_all.snap: FAIL
21651 "lint-snap-v2:vcs_files": {21379 "lint-snap-v2:vcs_files": {
21652 "manual_review": false,21380 "manual_review": false,
21653 "text": "OK"21381 "text": "OK"
21654 },
21655 "lint-snap-v2:version_valid": {
21656 "manual_review": false,
21657 "text": "OK"
21658 }21382 }
21659 },21383 },
21660 "warn": {}21384 "warn": {}
@@ -21857,10 +21581,6 @@ test-base-slots-plugs_1.0_all.snap: FAIL
21857 "lint-snap-v2:vcs_files": {21581 "lint-snap-v2:vcs_files": {
21858 "manual_review": false,21582 "manual_review": false,
21859 "text": "OK"21583 "text": "OK"
21860 },
21861 "lint-snap-v2:version_valid": {
21862 "manual_review": false,
21863 "text": "OK"
21864 }21584 }
21865 },21585 },
21866 "warn": {}21586 "warn": {}
@@ -22033,10 +21753,6 @@ test-check-notices-esm-apps_0.1_amd64.snap: pass
22033 "lint-snap-v2:vcs_files": {21753 "lint-snap-v2:vcs_files": {
22034 "manual_review": false,21754 "manual_review": false,
22035 "text": "OK"21755 "text": "OK"
22036 },
22037 "lint-snap-v2:version_valid": {
22038 "manual_review": false,
22039 "text": "OK"
22040 }21756 }
22041 },21757 },
22042 "warn": {}21758 "warn": {}
@@ -22204,10 +21920,6 @@ test-check-notices-esm-apps_0.1_amd64.snap: pass
22204 "lint-snap-v2:vcs_files": {21920 "lint-snap-v2:vcs_files": {
22205 "manual_review": false,21921 "manual_review": false,
22206 "text": "OK"21922 "text": "OK"
22207 },
22208 "lint-snap-v2:version_valid": {
22209 "manual_review": false,
22210 "text": "OK"
22211 }21923 }
22212 },21924 },
22213 "warn": {}21925 "warn": {}
@@ -22380,10 +22092,6 @@ test-check-notices-needed_0.1_amd64.snap: pass
22380 "lint-snap-v2:vcs_files": {22092 "lint-snap-v2:vcs_files": {
22381 "manual_review": false,22093 "manual_review": false,
22382 "text": "OK"22094 "text": "OK"
22383 },
22384 "lint-snap-v2:version_valid": {
22385 "manual_review": false,
22386 "text": "OK"
22387 }22095 }
22388 },22096 },
22389 "warn": {}22097 "warn": {}
@@ -22551,10 +22259,6 @@ test-check-notices-needed_0.1_amd64.snap: pass
22551 "lint-snap-v2:vcs_files": {22259 "lint-snap-v2:vcs_files": {
22552 "manual_review": false,22260 "manual_review": false,
22553 "text": "OK"22261 "text": "OK"
22554 },
22555 "lint-snap-v2:version_valid": {
22556 "manual_review": false,
22557 "text": "OK"
22558 }22262 }
22559 },22263 },
22560 "warn": {}22264 "warn": {}
@@ -22736,10 +22440,6 @@ test-check-notices-primed-stage-packages-needed_0.1_amd64.snap: FAIL
22736 "lint-snap-v2:vcs_files": {22440 "lint-snap-v2:vcs_files": {
22737 "manual_review": false,22441 "manual_review": false,
22738 "text": "OK"22442 "text": "OK"
22739 },
22740 "lint-snap-v2:version_valid": {
22741 "manual_review": false,
22742 "text": "OK"
22743 }22443 }
22744 },22444 },
22745 "warn": {}22445 "warn": {}
@@ -22912,10 +22612,6 @@ test-check-notices-primed-stage-packages-needed_0.1_amd64.snap: FAIL
22912 "lint-snap-v2:vcs_files": {22612 "lint-snap-v2:vcs_files": {
22913 "manual_review": false,22613 "manual_review": false,
22914 "text": "OK"22614 "text": "OK"
22915 },
22916 "lint-snap-v2:version_valid": {
22917 "manual_review": false,
22918 "text": "OK"
22919 }22615 }
22920 },22616 },
22921 "warn": {}22617 "warn": {}
@@ -23097,10 +22793,6 @@ test-check-notices-primed-stage-packages-needed_0.2_amd64.snap: FAIL
23097 "lint-snap-v2:vcs_files": {22793 "lint-snap-v2:vcs_files": {
23098 "manual_review": false,22794 "manual_review": false,
23099 "text": "OK"22795 "text": "OK"
23100 },
23101 "lint-snap-v2:version_valid": {
23102 "manual_review": false,
23103 "text": "OK"
23104 }22796 }
23105 },22797 },
23106 "warn": {}22798 "warn": {}
@@ -23273,10 +22965,6 @@ test-check-notices-primed-stage-packages-needed_0.2_amd64.snap: FAIL
23273 "lint-snap-v2:vcs_files": {22965 "lint-snap-v2:vcs_files": {
23274 "manual_review": false,22966 "manual_review": false,
23275 "text": "OK"22967 "text": "OK"
23276 },
23277 "lint-snap-v2:version_valid": {
23278 "manual_review": false,
23279 "text": "OK"
23280 }22968 }
23281 },22969 },
23282 "warn": {}22970 "warn": {}
@@ -23449,10 +23137,6 @@ test-check-notices-primed-stage-packages_0.1_amd64.snap: pass
23449 "lint-snap-v2:vcs_files": {23137 "lint-snap-v2:vcs_files": {
23450 "manual_review": false,23138 "manual_review": false,
23451 "text": "OK"23139 "text": "OK"
23452 },
23453 "lint-snap-v2:version_valid": {
23454 "manual_review": false,
23455 "text": "OK"
23456 }23140 }
23457 },23141 },
23458 "warn": {}23142 "warn": {}
@@ -23620,10 +23304,6 @@ test-check-notices-primed-stage-packages_0.1_amd64.snap: pass
23620 "lint-snap-v2:vcs_files": {23304 "lint-snap-v2:vcs_files": {
23621 "manual_review": false,23305 "manual_review": false,
23622 "text": "OK"23306 "text": "OK"
23623 },
23624 "lint-snap-v2:version_valid": {
23625 "manual_review": false,
23626 "text": "OK"
23627 }23307 }
23628 },23308 },
23629 "warn": {}23309 "warn": {}
@@ -23796,10 +23476,6 @@ test-check-notices_0.1_amd64.snap: pass
23796 "lint-snap-v2:vcs_files": {23476 "lint-snap-v2:vcs_files": {
23797 "manual_review": false,23477 "manual_review": false,
23798 "text": "OK"23478 "text": "OK"
23799 },
23800 "lint-snap-v2:version_valid": {
23801 "manual_review": false,
23802 "text": "OK"
23803 }23479 }
23804 },23480 },
23805 "warn": {}23481 "warn": {}
@@ -23967,10 +23643,6 @@ test-check-notices_0.1_amd64.snap: pass
23967 "lint-snap-v2:vcs_files": {23643 "lint-snap-v2:vcs_files": {
23968 "manual_review": false,23644 "manual_review": false,
23969 "text": "OK"23645 "text": "OK"
23970 },
23971 "lint-snap-v2:version_valid": {
23972 "manual_review": false,
23973 "text": "OK"
23974 }23646 }
23975 },23647 },
23976 "warn": {}23648 "warn": {}
@@ -24174,10 +23846,6 @@ test-classic_0_all.snap: FAIL
24174 "lint-snap-v2:vcs_files": {23846 "lint-snap-v2:vcs_files": {
24175 "manual_review": false,23847 "manual_review": false,
24176 "text": "OK"23848 "text": "OK"
24177 },
24178 "lint-snap-v2:version_valid": {
24179 "manual_review": false,
24180 "text": "OK"
24181 }23849 }
24182 },23850 },
24183 "warn": {}23851 "warn": {}
@@ -24375,10 +24043,6 @@ test-classic_0_all.snap: FAIL
24375 "lint-snap-v2:vcs_files": {24043 "lint-snap-v2:vcs_files": {
24376 "manual_review": false,24044 "manual_review": false,
24377 "text": "OK"24045 "text": "OK"
24378 },
24379 "lint-snap-v2:version_valid": {
24380 "manual_review": false,
24381 "text": "OK"
24382 }24046 }
24383 },24047 },
24384 "warn": {}24048 "warn": {}
@@ -24571,10 +24235,6 @@ test-command-with-args_0_all.snap: pass
24571 "lint-snap-v2:vcs_files": {24235 "lint-snap-v2:vcs_files": {
24572 "manual_review": false,24236 "manual_review": false,
24573 "text": "OK"24237 "text": "OK"
24574 },
24575 "lint-snap-v2:version_valid": {
24576 "manual_review": false,
24577 "text": "OK"
24578 }24238 }
24579 },24239 },
24580 "warn": {}24240 "warn": {}
@@ -24762,10 +24422,6 @@ test-command-with-args_0_all.snap: pass
24762 "lint-snap-v2:vcs_files": {24422 "lint-snap-v2:vcs_files": {
24763 "manual_review": false,24423 "manual_review": false,
24764 "text": "OK"24424 "text": "OK"
24765 },
24766 "lint-snap-v2:version_valid": {
24767 "manual_review": false,
24768 "text": "OK"
24769 }24425 }
24770 },24426 },
24771 "warn": {}24427 "warn": {}
@@ -24970,10 +24626,6 @@ test-common-id_0_all.snap: pass
24970 "lint-snap-v2:vcs_files": {24626 "lint-snap-v2:vcs_files": {
24971 "manual_review": false,24627 "manual_review": false,
24972 "text": "OK"24628 "text": "OK"
24973 },
24974 "lint-snap-v2:version_valid": {
24975 "manual_review": false,
24976 "text": "OK"
24977 }24629 }
24978 },24630 },
24979 "warn": {}24631 "warn": {}
@@ -25173,10 +24825,6 @@ test-common-id_0_all.snap: pass
25173 "lint-snap-v2:vcs_files": {24825 "lint-snap-v2:vcs_files": {
25174 "manual_review": false,24826 "manual_review": false,
25175 "text": "OK"24827 "text": "OK"
25176 },
25177 "lint-snap-v2:version_valid": {
25178 "manual_review": false,
25179 "text": "OK"
25180 }24828 }
25181 },24829 },
25182 "warn": {}24830 "warn": {}
@@ -25386,10 +25034,6 @@ test-completion_1.0_all.snap: pass
25386 "lint-snap-v2:vcs_files": {25034 "lint-snap-v2:vcs_files": {
25387 "manual_review": false,25035 "manual_review": false,
25388 "text": "OK"25036 "text": "OK"
25389 },
25390 "lint-snap-v2:version_valid": {
25391 "manual_review": false,
25392 "text": "OK"
25393 }25037 }
25394 },25038 },
25395 "warn": {}25039 "warn": {}
@@ -25594,10 +25238,6 @@ test-completion_1.0_all.snap: pass
25594 "lint-snap-v2:vcs_files": {25238 "lint-snap-v2:vcs_files": {
25595 "manual_review": false,25239 "manual_review": false,
25596 "text": "OK"25240 "text": "OK"
25597 },
25598 "lint-snap-v2:version_valid": {
25599 "manual_review": false,
25600 "text": "OK"
25601 }25241 }
25602 },25242 },
25603 "warn": {}25243 "warn": {}
@@ -25939,10 +25579,6 @@ test-content_0.1_all.snap: pass
25939 "lint-snap-v2:vcs_files": {25579 "lint-snap-v2:vcs_files": {
25940 "manual_review": false,25580 "manual_review": false,
25941 "text": "OK"25581 "text": "OK"
25942 },
25943 "lint-snap-v2:version_valid": {
25944 "manual_review": false,
25945 "text": "OK"
25946 }25582 }
25947 },25583 },
25948 "warn": {}25584 "warn": {}
@@ -26275,10 +25911,6 @@ test-content_0.1_all.snap: pass
26275 "lint-snap-v2:vcs_files": {25911 "lint-snap-v2:vcs_files": {
26276 "manual_review": false,25912 "manual_review": false,
26277 "text": "OK"25913 "text": "OK"
26278 },
26279 "lint-snap-v2:version_valid": {
26280 "manual_review": false,
26281 "text": "OK"
26282 }25914 }
26283 },25915 },
26284 "warn": {}25916 "warn": {}
@@ -26411,10 +26043,6 @@ test-core-with-primed-staged_16-2.37.2_amd64.snap: FAIL
26411 "lint-snap-v2:vcs_files": {26043 "lint-snap-v2:vcs_files": {
26412 "manual_review": false,26044 "manual_review": false,
26413 "text": "OK"26045 "text": "OK"
26414 },
26415 "lint-snap-v2:version_valid": {
26416 "manual_review": false,
26417 "text": "OK"
26418 }26046 }
26419 },26047 },
26420 "warn": {}26048 "warn": {}
@@ -26534,10 +26162,6 @@ test-core-with-primed-staged_16-2.37.2_amd64.snap: FAIL
26534 "lint-snap-v2:vcs_files": {26162 "lint-snap-v2:vcs_files": {
26535 "manual_review": false,26163 "manual_review": false,
26536 "text": "OK"26164 "text": "OK"
26537 },
26538 "lint-snap-v2:version_valid": {
26539 "manual_review": false,
26540 "text": "OK"
26541 }26165 }
26542 },26166 },
26543 "warn": {}26167 "warn": {}
@@ -26666,10 +26290,6 @@ test-core_16-2.37.2_amd64.snap: FAIL
26666 "lint-snap-v2:vcs_files": {26290 "lint-snap-v2:vcs_files": {
26667 "manual_review": false,26291 "manual_review": false,
26668 "text": "OK"26292 "text": "OK"
26669 },
26670 "lint-snap-v2:version_valid": {
26671 "manual_review": false,
26672 "text": "OK"
26673 }26293 }
26674 },26294 },
26675 "warn": {}26295 "warn": {}
@@ -26789,10 +26409,6 @@ test-core_16-2.37.2_amd64.snap: FAIL
26789 "lint-snap-v2:vcs_files": {26409 "lint-snap-v2:vcs_files": {
26790 "manual_review": false,26410 "manual_review": false,
26791 "text": "OK"26411 "text": "OK"
26792 },
26793 "lint-snap-v2:version_valid": {
26794 "manual_review": false,
26795 "text": "OK"
26796 }26412 }
26797 },26413 },
26798 "warn": {}26414 "warn": {}
@@ -27006,10 +26622,6 @@ test-desktop-file_1_all.snap: pass
27006 "lint-snap-v2:vcs_files": {26622 "lint-snap-v2:vcs_files": {
27007 "manual_review": false,26623 "manual_review": false,
27008 "text": "OK"26624 "text": "OK"
27009 },
27010 "lint-snap-v2:version_valid": {
27011 "manual_review": false,
27012 "text": "OK"
27013 }26625 }
27014 },26626 },
27015 "warn": {}26627 "warn": {}
@@ -27222,10 +26834,6 @@ test-desktop-file_1_all.snap: pass
27222 "lint-snap-v2:vcs_files": {26834 "lint-snap-v2:vcs_files": {
27223 "manual_review": false,26835 "manual_review": false,
27224 "text": "OK"26836 "text": "OK"
27225 },
27226 "lint-snap-v2:version_valid": {
27227 "manual_review": false,
27228 "text": "OK"
27229 }26837 }
27230 },26838 },
27231 "warn": {}26839 "warn": {}
@@ -27395,10 +27003,6 @@ test-dir-perms_0_amd64.snap: FAIL
27395 "lint-snap-v2:vcs_files": {27003 "lint-snap-v2:vcs_files": {
27396 "manual_review": false,27004 "manual_review": false,
27397 "text": "OK"27005 "text": "OK"
27398 },
27399 "lint-snap-v2:version_valid": {
27400 "manual_review": false,
27401 "text": "OK"
27402 }27006 }
27403 },27007 },
27404 "warn": {}27008 "warn": {}
@@ -27560,10 +27164,6 @@ test-dir-perms_0_amd64.snap: FAIL
27560 "lint-snap-v2:vcs_files": {27164 "lint-snap-v2:vcs_files": {
27561 "manual_review": false,27165 "manual_review": false,
27562 "text": "OK"27166 "text": "OK"
27563 },
27564 "lint-snap-v2:version_valid": {
27565 "manual_review": false,
27566 "text": "OK"
27567 }27167 }
27568 },27168 },
27569 "warn": {}27169 "warn": {}
@@ -27702,10 +27302,6 @@ test-dpkg-list-app_1.0_amd64.snap: pass
27702 "lint-snap-v2:vcs_files": {27302 "lint-snap-v2:vcs_files": {
27703 "manual_review": false,27303 "manual_review": false,
27704 "text": "OK"27304 "text": "OK"
27705 },
27706 "lint-snap-v2:version_valid": {
27707 "manual_review": false,
27708 "text": "OK"
27709 }27305 }
27710 },27306 },
27711 "warn": {}27307 "warn": {}
@@ -27833,10 +27429,6 @@ test-dpkg-list-app_1.0_amd64.snap: pass
27833 "lint-snap-v2:vcs_files": {27429 "lint-snap-v2:vcs_files": {
27834 "manual_review": false,27430 "manual_review": false,
27835 "text": "OK"27431 "text": "OK"
27836 },
27837 "lint-snap-v2:version_valid": {
27838 "manual_review": false,
27839 "text": "OK"
27840 }27432 }
27841 },27433 },
27842 "warn": {}27434 "warn": {}
@@ -28109,10 +27701,6 @@ test-env_0.1_all.snap: pass
28109 "lint-snap-v2:vcs_files": {27701 "lint-snap-v2:vcs_files": {
28110 "manual_review": false,27702 "manual_review": false,
28111 "text": "OK"27703 "text": "OK"
28112 },
28113 "lint-snap-v2:version_valid": {
28114 "manual_review": false,
28115 "text": "OK"
28116 }27704 }
28117 },27705 },
28118 "warn": {}27706 "warn": {}
@@ -28396,10 +27984,6 @@ test-env_0.1_all.snap: pass
28396 "lint-snap-v2:vcs_files": {27984 "lint-snap-v2:vcs_files": {
28397 "manual_review": false,27985 "manual_review": false,
28398 "text": "OK"27986 "text": "OK"
28399 },
28400 "lint-snap-v2:version_valid": {
28401 "manual_review": false,
28402 "text": "OK"
28403 }27987 }
28404 },27988 },
28405 "warn": {}27989 "warn": {}
@@ -28582,10 +28166,6 @@ test-execstack_0_amd64.snap: FAIL
28582 "lint-snap-v2:vcs_files": {28166 "lint-snap-v2:vcs_files": {
28583 "manual_review": false,28167 "manual_review": false,
28584 "text": "OK"28168 "text": "OK"
28585 },
28586 "lint-snap-v2:version_valid": {
28587 "manual_review": false,
28588 "text": "OK"
28589 }28169 }
28590 },28170 },
28591 "warn": {}28171 "warn": {}
@@ -28746,10 +28326,6 @@ test-execstack_0_amd64.snap: FAIL
28746 "lint-snap-v2:vcs_files": {28326 "lint-snap-v2:vcs_files": {
28747 "manual_review": false,28327 "manual_review": false,
28748 "text": "OK"28328 "text": "OK"
28749 },
28750 "lint-snap-v2:version_valid": {
28751 "manual_review": false,
28752 "text": "OK"
28753 }28329 }
28754 },28330 },
28755 "warn": {}28331 "warn": {}
@@ -28914,10 +28490,6 @@ test-grade-and-confinement_0.1_all.snap: pass
28914 "lint-snap-v2:vcs_files": {28490 "lint-snap-v2:vcs_files": {
28915 "manual_review": false,28491 "manual_review": false,
28916 "text": "OK"28492 "text": "OK"
28917 },
28918 "lint-snap-v2:version_valid": {
28919 "manual_review": false,
28920 "text": "OK"
28921 }28493 }
28922 },28494 },
28923 "warn": {}28495 "warn": {}
@@ -29077,10 +28649,6 @@ test-grade-and-confinement_0.1_all.snap: pass
29077 "lint-snap-v2:vcs_files": {28649 "lint-snap-v2:vcs_files": {
29078 "manual_review": false,28650 "manual_review": false,
29079 "text": "OK"28651 "text": "OK"
29080 },
29081 "lint-snap-v2:version_valid": {
29082 "manual_review": false,
29083 "text": "OK"
29084 }28652 }
29085 },28653 },
29086 "warn": {}28654 "warn": {}
@@ -29241,10 +28809,6 @@ test-gzip_1.snap: FAIL
29241 "lint-snap-v2:vcs_files": {28809 "lint-snap-v2:vcs_files": {
29242 "manual_review": false,28810 "manual_review": false,
29243 "text": "OK"28811 "text": "OK"
29244 },
29245 "lint-snap-v2:version_valid": {
29246 "manual_review": false,
29247 "text": "OK"
29248 }28812 }
29249 },28813 },
29250 "warn": {}28814 "warn": {}
@@ -29397,10 +28961,6 @@ test-gzip_1.snap: FAIL
29397 "lint-snap-v2:vcs_files": {28961 "lint-snap-v2:vcs_files": {
29398 "manual_review": false,28962 "manual_review": false,
29399 "text": "OK"28963 "text": "OK"
29400 },
29401 "lint-snap-v2:version_valid": {
29402 "manual_review": false,
29403 "text": "OK"
29404 }28964 }
29405 },28965 },
29406 "warn": {}28966 "warn": {}
@@ -29826,10 +29386,6 @@ test-hello-dbus_2_amd64.snap: FAIL
29826 "lint-snap-v2:vcs_files": {29386 "lint-snap-v2:vcs_files": {
29827 "manual_review": false,29387 "manual_review": false,
29828 "text": "OK"29388 "text": "OK"
29829 },
29830 "lint-snap-v2:version_valid": {
29831 "manual_review": false,
29832 "text": "OK"
29833 }29389 }
29834 },29390 },
29835 "warn": {}29391 "warn": {}
@@ -30259,10 +29815,6 @@ test-hello-dbus_2_amd64.snap: FAIL
30259 "lint-snap-v2:vcs_files": {29815 "lint-snap-v2:vcs_files": {
30260 "manual_review": false,29816 "manual_review": false,
30261 "text": "OK"29817 "text": "OK"
30262 },
30263 "lint-snap-v2:version_valid": {
30264 "manual_review": false,
30265 "text": "OK"
30266 }29818 }
30267 },29819 },
30268 "warn": {}29820 "warn": {}
@@ -30505,10 +30057,6 @@ test-home-read-attrib_0.1_amd64.snap: FAIL
30505 "lint-snap-v2:vcs_files": {30057 "lint-snap-v2:vcs_files": {
30506 "manual_review": false,30058 "manual_review": false,
30507 "text": "OK"30059 "text": "OK"
30508 },
30509 "lint-snap-v2:version_valid": {
30510 "manual_review": false,
30511 "text": "OK"
30512 }30060 }
30513 },30061 },
30514 "warn": {}30062 "warn": {}
@@ -30730,10 +30278,6 @@ test-home-read-attrib_0.1_amd64.snap: FAIL
30730 "lint-snap-v2:vcs_files": {30278 "lint-snap-v2:vcs_files": {
30731 "manual_review": false,30279 "manual_review": false,
30732 "text": "OK"30280 "text": "OK"
30733 },
30734 "lint-snap-v2:version_valid": {
30735 "manual_review": false,
30736 "text": "OK"
30737 }30281 }
30738 },30282 },
30739 "warn": {}30283 "warn": {}
@@ -31159,10 +30703,6 @@ test-hooks_0_all.snap: pass
31159 "lint-snap-v2:vcs_files": {30703 "lint-snap-v2:vcs_files": {
31160 "manual_review": false,30704 "manual_review": false,
31161 "text": "OK"30705 "text": "OK"
31162 },
31163 "lint-snap-v2:version_valid": {
31164 "manual_review": false,
31165 "text": "OK"
31166 }30706 }
31167 },30707 },
31168 "warn": {}30708 "warn": {}
@@ -31579,10 +31119,6 @@ test-hooks_0_all.snap: pass
31579 "lint-snap-v2:vcs_files": {31119 "lint-snap-v2:vcs_files": {
31580 "manual_review": false,31120 "manual_review": false,
31581 "text": "OK"31121 "text": "OK"
31582 },
31583 "lint-snap-v2:version_valid": {
31584 "manual_review": false,
31585 "text": "OK"
31586 }31122 }
31587 },31123 },
31588 "warn": {}31124 "warn": {}
@@ -31811,10 +31347,6 @@ test-install-stop-and-refresh-modes_0.1_all.snap: pass
31811 "lint-snap-v2:vcs_files": {31347 "lint-snap-v2:vcs_files": {
31812 "manual_review": false,31348 "manual_review": false,
31813 "text": "OK"31349 "text": "OK"
31814 },
31815 "lint-snap-v2:version_valid": {
31816 "manual_review": false,
31817 "text": "OK"
31818 }31350 }
31819 },31351 },
31820 "warn": {}31352 "warn": {}
@@ -32046,10 +31578,6 @@ test-install-stop-and-refresh-modes_0.1_all.snap: pass
32046 "lint-snap-v2:vcs_files": {31578 "lint-snap-v2:vcs_files": {
32047 "manual_review": false,31579 "manual_review": false,
32048 "text": "OK"31580 "text": "OK"
32049 },
32050 "lint-snap-v2:version_valid": {
32051 "manual_review": false,
32052 "text": "OK"
32053 }31581 }
32054 },31582 },
32055 "warn": {}31583 "warn": {}
@@ -32186,10 +31714,6 @@ test-link_0.1_all.snap: pass
32186 "lint-snap-v2:vcs_files": {31714 "lint-snap-v2:vcs_files": {
32187 "manual_review": false,31715 "manual_review": false,
32188 "text": "OK"31716 "text": "OK"
32189 },
32190 "lint-snap-v2:version_valid": {
32191 "manual_review": false,
32192 "text": "OK"
32193 }31717 }
32194 },31718 },
32195 "warn": {}31719 "warn": {}
@@ -32309,10 +31833,6 @@ test-link_0.1_all.snap: pass
32309 "lint-snap-v2:vcs_files": {31833 "lint-snap-v2:vcs_files": {
32310 "manual_review": false,31834 "manual_review": false,
32311 "text": "OK"31835 "text": "OK"
32312 },
32313 "lint-snap-v2:version_valid": {
32314 "manual_review": false,
32315 "text": "OK"
32316 }31836 }
32317 },31837 },
32318 "warn": {}31838 "warn": {}
@@ -32465,10 +31985,6 @@ test-lzo_1.snap: pass
32465 "lint-snap-v2:vcs_files": {31985 "lint-snap-v2:vcs_files": {
32466 "manual_review": false,31986 "manual_review": false,
32467 "text": "OK"31987 "text": "OK"
32468 },
32469 "lint-snap-v2:version_valid": {
32470 "manual_review": false,
32471 "text": "OK"
32472 }31988 }
32473 },31989 },
32474 "warn": {}31990 "warn": {}
@@ -32620,10 +32136,6 @@ test-lzo_1.snap: pass
32620 "lint-snap-v2:vcs_files": {32136 "lint-snap-v2:vcs_files": {
32621 "manual_review": false,32137 "manual_review": false,
32622 "text": "OK"32138 "text": "OK"
32623 },
32624 "lint-snap-v2:version_valid": {
32625 "manual_review": false,
32626 "text": "OK"
32627 }32139 }
32628 },32140 },
32629 "warn": {}32141 "warn": {}
@@ -32882,10 +32394,6 @@ test-mir-xwayland_0_all.snap: FAIL
32882 "lint-snap-v2:vcs_files": {32394 "lint-snap-v2:vcs_files": {
32883 "manual_review": false,32395 "manual_review": false,
32884 "text": "OK"32396 "text": "OK"
32885 },
32886 "lint-snap-v2:version_valid": {
32887 "manual_review": false,
32888 "text": "OK"
32889 }32397 }
32890 },32398 },
32891 "warn": {}32399 "warn": {}
@@ -33139,10 +32647,6 @@ test-mir-xwayland_0_all.snap: FAIL
33139 "lint-snap-v2:vcs_files": {32647 "lint-snap-v2:vcs_files": {
33140 "manual_review": false,32648 "manual_review": false,
33141 "text": "OK"32649 "text": "OK"
33142 },
33143 "lint-snap-v2:version_valid": {
33144 "manual_review": false,
33145 "text": "OK"
33146 }32650 }
33147 },32651 },
33148 "warn": {}32652 "warn": {}
@@ -33382,10 +32886,6 @@ test-missing-required-attributes_0_all.snap: FAIL
33382 "lint-snap-v2:vcs_files": {32886 "lint-snap-v2:vcs_files": {
33383 "manual_review": false,32887 "manual_review": false,
33384 "text": "OK"32888 "text": "OK"
33385 },
33386 "lint-snap-v2:version_valid": {
33387 "manual_review": false,
33388 "text": "OK"
33389 }32889 }
33390 },32890 },
33391 "warn": {}32891 "warn": {}
@@ -33608,10 +33108,6 @@ test-missing-required-attributes_0_all.snap: FAIL
33608 "lint-snap-v2:vcs_files": {33108 "lint-snap-v2:vcs_files": {
33609 "manual_review": false,33109 "manual_review": false,
33610 "text": "OK"33110 "text": "OK"
33611 },
33612 "lint-snap-v2:version_valid": {
33613 "manual_review": false,
33614 "text": "OK"
33615 }33111 }
33616 },33112 },
33617 "warn": {}33113 "warn": {}
@@ -33809,10 +33305,6 @@ test-mpris-name-matches_0_amd64.snap: FAIL
33809 "lint-snap-v2:vcs_files": {33305 "lint-snap-v2:vcs_files": {
33810 "manual_review": false,33306 "manual_review": false,
33811 "text": "OK"33307 "text": "OK"
33812 },
33813 "lint-snap-v2:version_valid": {
33814 "manual_review": false,
33815 "text": "OK"
33816 }33308 }
33817 },33309 },
33818 "warn": {}33310 "warn": {}
@@ -34001,10 +33493,6 @@ test-mpris-name-matches_0_amd64.snap: FAIL
34001 "lint-snap-v2:vcs_files": {33493 "lint-snap-v2:vcs_files": {
34002 "manual_review": false,33494 "manual_review": false,
34003 "text": "OK"33495 "text": "OK"
34004 },
34005 "lint-snap-v2:version_valid": {
34006 "manual_review": false,
34007 "text": "OK"
34008 }33496 }
34009 },33497 },
34010 "warn": {}33498 "warn": {}
@@ -34202,10 +33690,6 @@ test-mpris-name-mismatch_0_amd64.snap: FAIL
34202 "lint-snap-v2:vcs_files": {33690 "lint-snap-v2:vcs_files": {
34203 "manual_review": false,33691 "manual_review": false,
34204 "text": "OK"33692 "text": "OK"
34205 },
34206 "lint-snap-v2:version_valid": {
34207 "manual_review": false,
34208 "text": "OK"
34209 }33693 }
34210 },33694 },
34211 "warn": {}33695 "warn": {}
@@ -34394,10 +33878,6 @@ test-mpris-name-mismatch_0_amd64.snap: FAIL
34394 "lint-snap-v2:vcs_files": {33878 "lint-snap-v2:vcs_files": {
34395 "manual_review": false,33879 "manual_review": false,
34396 "text": "OK"33880 "text": "OK"
34397 },
34398 "lint-snap-v2:version_valid": {
34399 "manual_review": false,
34400 "text": "OK"
34401 }33881 }
34402 },33882 },
34403 "warn": {}33883 "warn": {}
@@ -34575,10 +34055,6 @@ test-mpris_0_amd64.snap: pass
34575 "lint-snap-v2:vcs_files": {34055 "lint-snap-v2:vcs_files": {
34576 "manual_review": false,34056 "manual_review": false,
34577 "text": "OK"34057 "text": "OK"
34578 },
34579 "lint-snap-v2:version_valid": {
34580 "manual_review": false,
34581 "text": "OK"
34582 }34058 }
34583 },34059 },
34584 "warn": {}34060 "warn": {}
@@ -34751,10 +34227,6 @@ test-mpris_0_amd64.snap: pass
34751 "lint-snap-v2:vcs_files": {34227 "lint-snap-v2:vcs_files": {
34752 "manual_review": false,34228 "manual_review": false,
34753 "text": "OK"34229 "text": "OK"
34754 },
34755 "lint-snap-v2:version_valid": {
34756 "manual_review": false,
34757 "text": "OK"
34758 }34230 }
34759 },34231 },
34760 "warn": {}34232 "warn": {}
@@ -34923,10 +34395,6 @@ test-no-fragments_4.snap: FAIL
34923 "lint-snap-v2:vcs_files": {34395 "lint-snap-v2:vcs_files": {
34924 "manual_review": false,34396 "manual_review": false,
34925 "text": "OK"34397 "text": "OK"
34926 },
34927 "lint-snap-v2:version_valid": {
34928 "manual_review": false,
34929 "text": "OK"
34930 }34398 }
34931 },34399 },
34932 "warn": {}34400 "warn": {}
@@ -35087,10 +34555,6 @@ test-no-fragments_4.snap: FAIL
35087 "lint-snap-v2:vcs_files": {34555 "lint-snap-v2:vcs_files": {
35088 "manual_review": false,34556 "manual_review": false,
35089 "text": "OK"34557 "text": "OK"
35090 },
35091 "lint-snap-v2:version_valid": {
35092 "manual_review": false,
35093 "text": "OK"
35094 }34558 }
35095 },34559 },
35096 "warn": {}34560 "warn": {}
@@ -35285,10 +34749,6 @@ test-personal-files_1_all.snap: FAIL
35285 "lint-snap-v2:vcs_files": {34749 "lint-snap-v2:vcs_files": {
35286 "manual_review": false,34750 "manual_review": false,
35287 "text": "OK"34751 "text": "OK"
35288 },
35289 "lint-snap-v2:version_valid": {
35290 "manual_review": false,
35291 "text": "OK"
35292 }34752 }
35293 },34753 },
35294 "warn": {}34754 "warn": {}
@@ -35473,10 +34933,6 @@ test-personal-files_1_all.snap: FAIL
35473 "lint-snap-v2:vcs_files": {34933 "lint-snap-v2:vcs_files": {
35474 "manual_review": false,34934 "manual_review": false,
35475 "text": "OK"34935 "text": "OK"
35476 },
35477 "lint-snap-v2:version_valid": {
35478 "manual_review": false,
35479 "text": "OK"
35480 }34936 }
35481 },34937 },
35482 "warn": {}34938 "warn": {}
@@ -35658,10 +35114,6 @@ test-plug-cmd_1_all.snap: FAIL
35658 "lint-snap-v2:vcs_files": {35114 "lint-snap-v2:vcs_files": {
35659 "manual_review": false,35115 "manual_review": false,
35660 "text": "OK"35116 "text": "OK"
35661 },
35662 "lint-snap-v2:version_valid": {
35663 "manual_review": false,
35664 "text": "OK"
35665 }35117 }
35666 },35118 },
35667 "warn": {}35119 "warn": {}
@@ -35834,10 +35286,6 @@ test-plug-cmd_1_all.snap: FAIL
35834 "lint-snap-v2:vcs_files": {35286 "lint-snap-v2:vcs_files": {
35835 "manual_review": false,35287 "manual_review": false,
35836 "text": "OK"35288 "text": "OK"
35837 },
35838 "lint-snap-v2:version_valid": {
35839 "manual_review": false,
35840 "text": "OK"
35841 }35289 }
35842 },35290 },
35843 "warn": {}35291 "warn": {}
@@ -35989,10 +35437,6 @@ test-plug-hook-gadget_1_all.snap: FAIL
35989 "lint-snap-v2:vcs_files": {35437 "lint-snap-v2:vcs_files": {
35990 "manual_review": false,35438 "manual_review": false,
35991 "text": "OK"35439 "text": "OK"
35992 },
35993 "lint-snap-v2:version_valid": {
35994 "manual_review": false,
35995 "text": "OK"
35996 }35440 }
35997 },35441 },
35998 "warn": {}35442 "warn": {}
@@ -36129,10 +35573,6 @@ test-plug-hook-gadget_1_all.snap: FAIL
36129 "lint-snap-v2:vcs_files": {35573 "lint-snap-v2:vcs_files": {
36130 "manual_review": false,35574 "manual_review": false,
36131 "text": "OK"35575 "text": "OK"
36132 },
36133 "lint-snap-v2:version_valid": {
36134 "manual_review": false,
36135 "text": "OK"
36136 }35576 }
36137 },35577 },
36138 "warn": {}35578 "warn": {}
@@ -36322,10 +35762,6 @@ test-plug-hook_1_all.snap: FAIL
36322 "lint-snap-v2:vcs_files": {35762 "lint-snap-v2:vcs_files": {
36323 "manual_review": false,35763 "manual_review": false,
36324 "text": "OK"35764 "text": "OK"
36325 },
36326 "lint-snap-v2:version_valid": {
36327 "manual_review": false,
36328 "text": "OK"
36329 }35765 }
36330 },35766 },
36331 "warn": {}35767 "warn": {}
@@ -36510,10 +35946,6 @@ test-plug-hook_1_all.snap: FAIL
36510 "lint-snap-v2:vcs_files": {35946 "lint-snap-v2:vcs_files": {
36511 "manual_review": false,35947 "manual_review": false,
36512 "text": "OK"35948 "text": "OK"
36513 },
36514 "lint-snap-v2:version_valid": {
36515 "manual_review": false,
36516 "text": "OK"
36517 }35949 }
36518 },35950 },
36519 "warn": {}35951 "warn": {}
@@ -36673,10 +36105,6 @@ test-plug-reference-hook-gadget_1_all.snap: FAIL
36673 "lint-snap-v2:vcs_files": {36105 "lint-snap-v2:vcs_files": {
36674 "manual_review": false,36106 "manual_review": false,
36675 "text": "OK"36107 "text": "OK"
36676 },
36677 "lint-snap-v2:version_valid": {
36678 "manual_review": false,
36679 "text": "OK"
36680 }36108 }
36681 },36109 },
36682 "warn": {}36110 "warn": {}
@@ -36821,10 +36249,6 @@ test-plug-reference-hook-gadget_1_all.snap: FAIL
36821 "lint-snap-v2:vcs_files": {36249 "lint-snap-v2:vcs_files": {
36822 "manual_review": false,36250 "manual_review": false,
36823 "text": "OK"36251 "text": "OK"
36824 },
36825 "lint-snap-v2:version_valid": {
36826 "manual_review": false,
36827 "text": "OK"
36828 }36252 }
36829 },36253 },
36830 "warn": {}36254 "warn": {}
@@ -37022,10 +36446,6 @@ test-plug-reference-hook_1_all.snap: FAIL
37022 "lint-snap-v2:vcs_files": {36446 "lint-snap-v2:vcs_files": {
37023 "manual_review": false,36447 "manual_review": false,
37024 "text": "OK"36448 "text": "OK"
37025 },
37026 "lint-snap-v2:version_valid": {
37027 "manual_review": false,
37028 "text": "OK"
37029 }36449 }
37030 },36450 },
37031 "warn": {}36451 "warn": {}
@@ -37218,10 +36638,6 @@ test-plug-reference-hook_1_all.snap: FAIL
37218 "lint-snap-v2:vcs_files": {36638 "lint-snap-v2:vcs_files": {
37219 "manual_review": false,36639 "manual_review": false,
37220 "text": "OK"36640 "text": "OK"
37221 },
37222 "lint-snap-v2:version_valid": {
37223 "manual_review": false,
37224 "text": "OK"
37225 }36641 }
37226 },36642 },
37227 "warn": {}36643 "warn": {}
@@ -37411,10 +36827,6 @@ test-plug-reference_1_all.snap: FAIL
37411 "lint-snap-v2:vcs_files": {36827 "lint-snap-v2:vcs_files": {
37412 "manual_review": false,36828 "manual_review": false,
37413 "text": "OK"36829 "text": "OK"
37414 },
37415 "lint-snap-v2:version_valid": {
37416 "manual_review": false,
37417 "text": "OK"
37418 }36830 }
37419 },36831 },
37420 "warn": {}36832 "warn": {}
@@ -37595,10 +37007,6 @@ test-plug-reference_1_all.snap: FAIL
37595 "lint-snap-v2:vcs_files": {37007 "lint-snap-v2:vcs_files": {
37596 "manual_review": false,37008 "manual_review": false,
37597 "text": "OK"37009 "text": "OK"
37598 },
37599 "lint-snap-v2:version_valid": {
37600 "manual_review": false,
37601 "text": "OK"
37602 }37010 }
37603 },37011 },
37604 "warn": {}37012 "warn": {}
@@ -37780,10 +37188,6 @@ test-refresh-schedule_0.1_all.snap: FAIL
37780 "lint-snap-v2:vcs_files": {37188 "lint-snap-v2:vcs_files": {
37781 "manual_review": false,37189 "manual_review": false,
37782 "text": "OK"37190 "text": "OK"
37783 },
37784 "lint-snap-v2:version_valid": {
37785 "manual_review": false,
37786 "text": "OK"
37787 }37191 }
37788 },37192 },
37789 "warn": {}37193 "warn": {}
@@ -37956,10 +37360,6 @@ test-refresh-schedule_0.1_all.snap: FAIL
37956 "lint-snap-v2:vcs_files": {37360 "lint-snap-v2:vcs_files": {
37957 "manual_review": false,37361 "manual_review": false,
37958 "text": "OK"37362 "text": "OK"
37959 },
37960 "lint-snap-v2:version_valid": {
37961 "manual_review": false,
37962 "text": "OK"
37963 }37363 }
37964 },37364 },
37965 "warn": {}37365 "warn": {}
@@ -38155,10 +37555,6 @@ test-resquash-minimal_0.snap: FAIL
38155 "lint-snap-v2:vcs_files": {37555 "lint-snap-v2:vcs_files": {
38156 "manual_review": false,37556 "manual_review": false,
38157 "text": "OK"37557 "text": "OK"
38158 },
38159 "lint-snap-v2:version_valid": {
38160 "manual_review": false,
38161 "text": "OK"
38162 }37558 }
38163 },37559 },
38164 "warn": {}37560 "warn": {}
@@ -38344,10 +37740,6 @@ test-resquash-minimal_0.snap: FAIL
38344 "lint-snap-v2:vcs_files": {37740 "lint-snap-v2:vcs_files": {
38345 "manual_review": false,37741 "manual_review": false,
38346 "text": "OK"37742 "text": "OK"
38347 },
38348 "lint-snap-v2:version_valid": {
38349 "manual_review": false,
38350 "text": "OK"
38351 }37743 }
38352 },37744 },
38353 "warn": {}37745 "warn": {}
@@ -38530,10 +37922,6 @@ test-slot-cmd_1_all.snap: FAIL
38530 "lint-snap-v2:vcs_files": {37922 "lint-snap-v2:vcs_files": {
38531 "manual_review": false,37923 "manual_review": false,
38532 "text": "OK"37924 "text": "OK"
38533 },
38534 "lint-snap-v2:version_valid": {
38535 "manual_review": false,
38536 "text": "OK"
38537 }37925 }
38538 },37926 },
38539 "warn": {}37927 "warn": {}
@@ -38706,10 +38094,6 @@ test-slot-cmd_1_all.snap: FAIL
38706 "lint-snap-v2:vcs_files": {38094 "lint-snap-v2:vcs_files": {
38707 "manual_review": false,38095 "manual_review": false,
38708 "text": "OK"38096 "text": "OK"
38709 },
38710 "lint-snap-v2:version_valid": {
38711 "manual_review": false,
38712 "text": "OK"
38713 }38097 }
38714 },38098 },
38715 "warn": {}38099 "warn": {}
@@ -38903,10 +38287,6 @@ test-slot-hook_1_all.snap: FAIL
38903 "lint-snap-v2:vcs_files": {38287 "lint-snap-v2:vcs_files": {
38904 "manual_review": false,38288 "manual_review": false,
38905 "text": "OK"38289 "text": "OK"
38906 },
38907 "lint-snap-v2:version_valid": {
38908 "manual_review": false,
38909 "text": "OK"
38910 }38290 }
38911 },38291 },
38912 "warn": {}38292 "warn": {}
@@ -39091,10 +38471,6 @@ test-slot-hook_1_all.snap: FAIL
39091 "lint-snap-v2:vcs_files": {38471 "lint-snap-v2:vcs_files": {
39092 "manual_review": false,38472 "manual_review": false,
39093 "text": "OK"38473 "text": "OK"
39094 },
39095 "lint-snap-v2:version_valid": {
39096 "manual_review": false,
39097 "text": "OK"
39098 }38474 }
39099 },38475 },
39100 "warn": {}38476 "warn": {}
@@ -39296,10 +38672,6 @@ test-slot-reference-hook_1_all.snap: FAIL
39296 "lint-snap-v2:vcs_files": {38672 "lint-snap-v2:vcs_files": {
39297 "manual_review": false,38673 "manual_review": false,
39298 "text": "OK"38674 "text": "OK"
39299 },
39300 "lint-snap-v2:version_valid": {
39301 "manual_review": false,
39302 "text": "OK"
39303 }38675 }
39304 },38676 },
39305 "warn": {}38677 "warn": {}
@@ -39492,10 +38864,6 @@ test-slot-reference-hook_1_all.snap: FAIL
39492 "lint-snap-v2:vcs_files": {38864 "lint-snap-v2:vcs_files": {
39493 "manual_review": false,38865 "manual_review": false,
39494 "text": "OK"38866 "text": "OK"
39495 },
39496 "lint-snap-v2:version_valid": {
39497 "manual_review": false,
39498 "text": "OK"
39499 }38867 }
39500 },38868 },
39501 "warn": {}38869 "warn": {}
@@ -39685,10 +39053,6 @@ test-slot-reference_1_all.snap: FAIL
39685 "lint-snap-v2:vcs_files": {39053 "lint-snap-v2:vcs_files": {
39686 "manual_review": false,39054 "manual_review": false,
39687 "text": "OK"39055 "text": "OK"
39688 },
39689 "lint-snap-v2:version_valid": {
39690 "manual_review": false,
39691 "text": "OK"
39692 }39056 }
39693 },39057 },
39694 "warn": {}39058 "warn": {}
@@ -39869,10 +39233,6 @@ test-slot-reference_1_all.snap: FAIL
39869 "lint-snap-v2:vcs_files": {39233 "lint-snap-v2:vcs_files": {
39870 "manual_review": false,39234 "manual_review": false,
39871 "text": "OK"39235 "text": "OK"
39872 },
39873 "lint-snap-v2:version_valid": {
39874 "manual_review": false,
39875 "text": "OK"
39876 }39236 }
39877 },39237 },
39878 "warn": {}39238 "warn": {}
@@ -40058,10 +39418,6 @@ test-slot-toplevel_1_all.snap: FAIL
40058 "lint-snap-v2:vcs_files": {39418 "lint-snap-v2:vcs_files": {
40059 "manual_review": false,39419 "manual_review": false,
40060 "text": "OK"39420 "text": "OK"
40061 },
40062 "lint-snap-v2:version_valid": {
40063 "manual_review": false,
40064 "text": "OK"
40065 }39421 }
40066 },39422 },
40067 "warn": {}39423 "warn": {}
@@ -40238,10 +39594,6 @@ test-slot-toplevel_1_all.snap: FAIL
40238 "lint-snap-v2:vcs_files": {39594 "lint-snap-v2:vcs_files": {
40239 "manual_review": false,39595 "manual_review": false,
40240 "text": "OK"39596 "text": "OK"
40241 },
40242 "lint-snap-v2:version_valid": {
40243 "manual_review": false,
40244 "text": "OK"
40245 }39597 }
40246 },39598 },
40247 "warn": {}39599 "warn": {}
@@ -40410,10 +39762,6 @@ test-snapcraft-manifest-package-in-installed-snaps_0_amd64.snap: pass
40410 "lint-snap-v2:vcs_files": {39762 "lint-snap-v2:vcs_files": {
40411 "manual_review": false,39763 "manual_review": false,
40412 "text": "OK"39764 "text": "OK"
40413 },
40414 "lint-snap-v2:version_valid": {
40415 "manual_review": false,
40416 "text": "OK"
40417 }39765 }
40418 },39766 },
40419 "warn": {}39767 "warn": {}
@@ -40577,10 +39925,6 @@ test-snapcraft-manifest-package-in-installed-snaps_0_amd64.snap: pass
40577 "lint-snap-v2:vcs_files": {39925 "lint-snap-v2:vcs_files": {
40578 "manual_review": false,39926 "manual_review": false,
40579 "text": "OK"39927 "text": "OK"
40580 },
40581 "lint-snap-v2:version_valid": {
40582 "manual_review": false,
40583 "text": "OK"
40584 }39928 }
40585 },39929 },
40586 "warn": {}39930 "warn": {}
@@ -40749,10 +40093,6 @@ test-snapcraft-manifest-snapcraft-updated_0_amd64.snap: pass
40749 "lint-snap-v2:vcs_files": {40093 "lint-snap-v2:vcs_files": {
40750 "manual_review": false,40094 "manual_review": false,
40751 "text": "OK"40095 "text": "OK"
40752 },
40753 "lint-snap-v2:version_valid": {
40754 "manual_review": false,
40755 "text": "OK"
40756 }40096 }
40757 },40097 },
40758 "warn": {}40098 "warn": {}
@@ -40916,10 +40256,6 @@ test-snapcraft-manifest-snapcraft-updated_0_amd64.snap: pass
40916 "lint-snap-v2:vcs_files": {40256 "lint-snap-v2:vcs_files": {
40917 "manual_review": false,40257 "manual_review": false,
40918 "text": "OK"40258 "text": "OK"
40919 },
40920 "lint-snap-v2:version_valid": {
40921 "manual_review": false,
40922 "text": "OK"
40923 }40259 }
40924 },40260 },
40925 "warn": {}40261 "warn": {}
@@ -41088,10 +40424,6 @@ test-snapcraft-manifest-snapcraft-version-needed_0_amd64.snap: pass
41088 "lint-snap-v2:vcs_files": {40424 "lint-snap-v2:vcs_files": {
41089 "manual_review": false,40425 "manual_review": false,
41090 "text": "OK"40426 "text": "OK"
41091 },
41092 "lint-snap-v2:version_valid": {
41093 "manual_review": false,
41094 "text": "OK"
41095 }40427 }
41096 },40428 },
41097 "warn": {}40429 "warn": {}
@@ -41255,10 +40587,6 @@ test-snapcraft-manifest-snapcraft-version-needed_0_amd64.snap: pass
41255 "lint-snap-v2:vcs_files": {40587 "lint-snap-v2:vcs_files": {
41256 "manual_review": false,40588 "manual_review": false,
41257 "text": "OK"40589 "text": "OK"
41258 },
41259 "lint-snap-v2:version_valid": {
41260 "manual_review": false,
41261 "text": "OK"
41262 }40590 }
41263 },40591 },
41264 "warn": {}40592 "warn": {}
@@ -41427,10 +40755,6 @@ test-snapcraft-manifest-snapcraft-version_0_amd64.snap: pass
41427 "lint-snap-v2:vcs_files": {40755 "lint-snap-v2:vcs_files": {
41428 "manual_review": false,40756 "manual_review": false,
41429 "text": "OK"40757 "text": "OK"
41430 },
41431 "lint-snap-v2:version_valid": {
41432 "manual_review": false,
41433 "text": "OK"
41434 }40758 }
41435 },40759 },
41436 "warn": {}40760 "warn": {}
@@ -41594,10 +40918,6 @@ test-snapcraft-manifest-snapcraft-version_0_amd64.snap: pass
41594 "lint-snap-v2:vcs_files": {40918 "lint-snap-v2:vcs_files": {
41595 "manual_review": false,40919 "manual_review": false,
41596 "text": "OK"40920 "text": "OK"
41597 },
41598 "lint-snap-v2:version_valid": {
41599 "manual_review": false,
41600 "text": "OK"
41601 }40921 }
41602 },40922 },
41603 "warn": {}40923 "warn": {}
@@ -41766,10 +41086,6 @@ test-snapcraft-manifest-unittest_0_amd64.snap: pass
41766 "lint-snap-v2:vcs_files": {41086 "lint-snap-v2:vcs_files": {
41767 "manual_review": false,41087 "manual_review": false,
41768 "text": "OK"41088 "text": "OK"
41769 },
41770 "lint-snap-v2:version_valid": {
41771 "manual_review": false,
41772 "text": "OK"
41773 }41089 }
41774 },41090 },
41775 "warn": {}41091 "warn": {}
@@ -41933,10 +41249,6 @@ test-snapcraft-manifest-unittest_0_amd64.snap: pass
41933 "lint-snap-v2:vcs_files": {41249 "lint-snap-v2:vcs_files": {
41934 "manual_review": false,41250 "manual_review": false,
41935 "text": "OK"41251 "text": "OK"
41936 },
41937 "lint-snap-v2:version_valid": {
41938 "manual_review": false,
41939 "text": "OK"
41940 }41252 }
41941 },41253 },
41942 "warn": {}41254 "warn": {}
@@ -42105,10 +41417,6 @@ test-snapcraft-manifest_0_amd64.snap: pass
42105 "lint-snap-v2:vcs_files": {41417 "lint-snap-v2:vcs_files": {
42106 "manual_review": false,41418 "manual_review": false,
42107 "text": "OK"41419 "text": "OK"
42108 },
42109 "lint-snap-v2:version_valid": {
42110 "manual_review": false,
42111 "text": "OK"
42112 }41420 }
42113 },41421 },
42114 "warn": {}41422 "warn": {}
@@ -42272,10 +41580,6 @@ test-snapcraft-manifest_0_amd64.snap: pass
42272 "lint-snap-v2:vcs_files": {41580 "lint-snap-v2:vcs_files": {
42273 "manual_review": false,41581 "manual_review": false,
42274 "text": "OK"41582 "text": "OK"
42275 },
42276 "lint-snap-v2:version_valid": {
42277 "manual_review": false,
42278 "text": "OK"
42279 }41583 }
42280 },41584 },
42281 "warn": {}41585 "warn": {}
@@ -42500,10 +41804,6 @@ test-snapd-layout_1.0_all.snap: pass
42500 "lint-snap-v2:vcs_files": {41804 "lint-snap-v2:vcs_files": {
42501 "manual_review": false,41805 "manual_review": false,
42502 "text": "OK"41806 "text": "OK"
42503 },
42504 "lint-snap-v2:version_valid": {
42505 "manual_review": false,
42506 "text": "OK"
42507 }41807 }
42508 },41808 },
42509 "warn": {}41809 "warn": {}
@@ -42723,10 +42023,6 @@ test-snapd-layout_1.0_all.snap: pass
42723 "lint-snap-v2:vcs_files": {42023 "lint-snap-v2:vcs_files": {
42724 "manual_review": false,42024 "manual_review": false,
42725 "text": "OK"42025 "text": "OK"
42726 },
42727 "lint-snap-v2:version_valid": {
42728 "manual_review": false,
42729 "text": "OK"
42730 }42026 }
42731 },42027 },
42732 "warn": {}42028 "warn": {}
@@ -42903,10 +42199,6 @@ test-snapd-with-default-configure_3.snap: pass
42903 "lint-snap-v2:vcs_files": {42199 "lint-snap-v2:vcs_files": {
42904 "manual_review": false,42200 "manual_review": false,
42905 "text": "OK"42201 "text": "OK"
42906 },
42907 "lint-snap-v2:version_valid": {
42908 "manual_review": false,
42909 "text": "OK"
42910 }42202 }
42911 },42203 },
42912 "warn": {}42204 "warn": {}
@@ -43078,10 +42370,6 @@ test-snapd-with-default-configure_3.snap: pass
43078 "lint-snap-v2:vcs_files": {42370 "lint-snap-v2:vcs_files": {
43079 "manual_review": false,42371 "manual_review": false,
43080 "text": "OK"42372 "text": "OK"
43081 },
43082 "lint-snap-v2:version_valid": {
43083 "manual_review": false,
43084 "text": "OK"
43085 }42373 }
43086 },42374 },
43087 "warn": {}42375 "warn": {}
@@ -43211,10 +42499,6 @@ test-state-base_1_amd64.snap: FAIL
43211 "lint-snap-v2:vcs_files": {42499 "lint-snap-v2:vcs_files": {
43212 "manual_review": false,42500 "manual_review": false,
43213 "text": "OK"42501 "text": "OK"
43214 },
43215 "lint-snap-v2:version_valid": {
43216 "manual_review": false,
43217 "text": "OK"
43218 }42502 }
43219 },42503 },
43220 "warn": {}42504 "warn": {}
@@ -43331,10 +42615,6 @@ test-state-base_1_amd64.snap: FAIL
43331 "lint-snap-v2:vcs_files": {42615 "lint-snap-v2:vcs_files": {
43332 "manual_review": false,42616 "manual_review": false,
43333 "text": "OK"42617 "text": "OK"
43334 },
43335 "lint-snap-v2:version_valid": {
43336 "manual_review": false,
43337 "text": "OK"
43338 }42618 }
43339 },42619 },
43340 "warn": {}42620 "warn": {}
@@ -43512,10 +42792,6 @@ test-superprivileged-cmd_1_all.snap: FAIL
43512 "lint-snap-v2:vcs_files": {42792 "lint-snap-v2:vcs_files": {
43513 "manual_review": false,42793 "manual_review": false,
43514 "text": "OK"42794 "text": "OK"
43515 },
43516 "lint-snap-v2:version_valid": {
43517 "manual_review": false,
43518 "text": "OK"
43519 }42795 }
43520 },42796 },
43521 "warn": {}42797 "warn": {}
@@ -43688,10 +42964,6 @@ test-superprivileged-cmd_1_all.snap: FAIL
43688 "lint-snap-v2:vcs_files": {42964 "lint-snap-v2:vcs_files": {
43689 "manual_review": false,42965 "manual_review": false,
43690 "text": "OK"42966 "text": "OK"
43691 },
43692 "lint-snap-v2:version_valid": {
43693 "manual_review": false,
43694 "text": "OK"
43695 }42967 }
43696 },42968 },
43697 "warn": {}42969 "warn": {}
@@ -43881,10 +43153,6 @@ test-superprivileged-reference_1_all.snap: FAIL
43881 "lint-snap-v2:vcs_files": {43153 "lint-snap-v2:vcs_files": {
43882 "manual_review": false,43154 "manual_review": false,
43883 "text": "OK"43155 "text": "OK"
43884 },
43885 "lint-snap-v2:version_valid": {
43886 "manual_review": false,
43887 "text": "OK"
43888 }43156 }
43889 },43157 },
43890 "warn": {}43158 "warn": {}
@@ -44065,10 +43333,6 @@ test-superprivileged-reference_1_all.snap: FAIL
44065 "lint-snap-v2:vcs_files": {43333 "lint-snap-v2:vcs_files": {
44066 "manual_review": false,43334 "manual_review": false,
44067 "text": "OK"43335 "text": "OK"
44068 },
44069 "lint-snap-v2:version_valid": {
44070 "manual_review": false,
44071 "text": "OK"
44072 }43336 }
44073 },43337 },
44074 "warn": {}43338 "warn": {}
@@ -44262,10 +43526,6 @@ test-superprivileged-sneaky_1_all.snap: FAIL
44262 "lint-snap-v2:vcs_files": {43526 "lint-snap-v2:vcs_files": {
44263 "manual_review": false,43527 "manual_review": false,
44264 "text": "OK"43528 "text": "OK"
44265 },
44266 "lint-snap-v2:version_valid": {
44267 "manual_review": false,
44268 "text": "OK"
44269 }43529 }
44270 },43530 },
44271 "warn": {}43531 "warn": {}
@@ -44451,10 +43711,6 @@ test-superprivileged-sneaky_1_all.snap: FAIL
44451 "lint-snap-v2:vcs_files": {43711 "lint-snap-v2:vcs_files": {
44452 "manual_review": false,43712 "manual_review": false,
44453 "text": "OK"43713 "text": "OK"
44454 },
44455 "lint-snap-v2:version_valid": {
44456 "manual_review": false,
44457 "text": "OK"
44458 }43714 }
44459 },43715 },
44460 "warn": {}43716 "warn": {}
@@ -44649,10 +43905,6 @@ test-superprivileged-toplevel_1_all.snap: FAIL
44649 "lint-snap-v2:vcs_files": {43905 "lint-snap-v2:vcs_files": {
44650 "manual_review": false,43906 "manual_review": false,
44651 "text": "OK"43907 "text": "OK"
44652 },
44653 "lint-snap-v2:version_valid": {
44654 "manual_review": false,
44655 "text": "OK"
44656 }43908 }
44657 },43909 },
44658 "warn": {}43910 "warn": {}
@@ -44833,10 +44085,6 @@ test-superprivileged-toplevel_1_all.snap: FAIL
44833 "lint-snap-v2:vcs_files": {44085 "lint-snap-v2:vcs_files": {
44834 "manual_review": false,44086 "manual_review": false,
44835 "text": "OK"44087 "text": "OK"
44836 },
44837 "lint-snap-v2:version_valid": {
44838 "manual_review": false,
44839 "text": "OK"
44840 }44088 }
44841 },44089 },
44842 "warn": {}44090 "warn": {}
@@ -45009,10 +44257,6 @@ test-system-usernames_0_all.snap: pass
45009 "lint-snap-v2:vcs_files": {44257 "lint-snap-v2:vcs_files": {
45010 "manual_review": false,44258 "manual_review": false,
45011 "text": "OK"44259 "text": "OK"
45012 },
45013 "lint-snap-v2:version_valid": {
45014 "manual_review": false,
45015 "text": "OK"
45016 }44260 }
45017 },44261 },
45018 "warn": {}44262 "warn": {}
@@ -45180,10 +44424,6 @@ test-system-usernames_0_all.snap: pass
45180 "lint-snap-v2:vcs_files": {44424 "lint-snap-v2:vcs_files": {
45181 "manual_review": false,44425 "manual_review": false,
45182 "text": "OK"44426 "text": "OK"
45183 },
45184 "lint-snap-v2:version_valid": {
45185 "manual_review": false,
45186 "text": "OK"
45187 }44427 }
45188 },44428 },
45189 "warn": {}44429 "warn": {}
@@ -45439,10 +44679,6 @@ test-top-level-dbus-slot_1_amd64.snap: FAIL
45439 "lint-snap-v2:vcs_files": {44679 "lint-snap-v2:vcs_files": {
45440 "manual_review": false,44680 "manual_review": false,
45441 "text": "OK"44681 "text": "OK"
45442 },
45443 "lint-snap-v2:version_valid": {
45444 "manual_review": false,
45445 "text": "OK"
45446 }44682 }
45447 },44683 },
45448 "warn": {}44684 "warn": {}
@@ -45691,10 +44927,6 @@ test-top-level-dbus-slot_1_amd64.snap: FAIL
45691 "lint-snap-v2:vcs_files": {44927 "lint-snap-v2:vcs_files": {
45692 "manual_review": false,44928 "manual_review": false,
45693 "text": "OK"44929 "text": "OK"
45694 },
45695 "lint-snap-v2:version_valid": {
45696 "manual_review": false,
45697 "text": "OK"
45698 }44930 }
45699 },44931 },
45700 "warn": {}44932 "warn": {}
@@ -45815,10 +45047,6 @@ test-topdir-ro_1.0_all.snap: pass
45815 "lint-snap-v2:vcs_files": {45047 "lint-snap-v2:vcs_files": {
45816 "manual_review": false,45048 "manual_review": false,
45817 "text": "OK"45049 "text": "OK"
45818 },
45819 "lint-snap-v2:version_valid": {
45820 "manual_review": false,
45821 "text": "OK"
45822 }45050 }
45823 },45051 },
45824 "warn": {}45052 "warn": {}
@@ -45926,10 +45154,6 @@ test-topdir-ro_1.0_all.snap: pass
45926 "lint-snap-v2:vcs_files": {45154 "lint-snap-v2:vcs_files": {
45927 "manual_review": false,45155 "manual_review": false,
45928 "text": "OK"45156 "text": "OK"
45929 },
45930 "lint-snap-v2:version_valid": {
45931 "manual_review": false,
45932 "text": "OK"
45933 }45157 }
45934 },45158 },
45935 "warn": {}45159 "warn": {}
@@ -46115,10 +45339,6 @@ test-unity7-home_0.1_all.snap: pass
46115 "lint-snap-v2:vcs_files": {45339 "lint-snap-v2:vcs_files": {
46116 "manual_review": false,45340 "manual_review": false,
46117 "text": "OK"45341 "text": "OK"
46118 },
46119 "lint-snap-v2:version_valid": {
46120 "manual_review": false,
46121 "text": "OK"
46122 }45342 }
46123 },45343 },
46124 "warn": {}45344 "warn": {}
@@ -46303,10 +45523,6 @@ test-unity7-home_0.1_all.snap: pass
46303 "lint-snap-v2:vcs_files": {45523 "lint-snap-v2:vcs_files": {
46304 "manual_review": false,45524 "manual_review": false,
46305 "text": "OK"45525 "text": "OK"
46306 },
46307 "lint-snap-v2:version_valid": {
46308 "manual_review": false,
46309 "text": "OK"
46310 }45526 }
46311 },45527 },
46312 "warn": {}45528 "warn": {}
@@ -46468,10 +45684,6 @@ test-void-dir_0.1_all.snap: FAIL
46468 "lint-snap-v2:vcs_files": {45684 "lint-snap-v2:vcs_files": {
46469 "manual_review": false,45685 "manual_review": false,
46470 "text": "OK"45686 "text": "OK"
46471 },
46472 "lint-snap-v2:version_valid": {
46473 "manual_review": false,
46474 "text": "OK"
46475 }45687 }
46476 },45688 },
46477 "warn": {}45689 "warn": {}
@@ -46625,10 +45837,6 @@ test-void-dir_0.1_all.snap: FAIL
46625 "lint-snap-v2:vcs_files": {45837 "lint-snap-v2:vcs_files": {
46626 "manual_review": false,45838 "manual_review": false,
46627 "text": "OK"45839 "text": "OK"
46628 },
46629 "lint-snap-v2:version_valid": {
46630 "manual_review": false,
46631 "text": "OK"
46632 }45840 }
46633 },45841 },
46634 "warn": {}45842 "warn": {}
@@ -46816,10 +46024,6 @@ test-x11-home_0.1_all.snap: pass
46816 "lint-snap-v2:vcs_files": {46024 "lint-snap-v2:vcs_files": {
46817 "manual_review": false,46025 "manual_review": false,
46818 "text": "OK"46026 "text": "OK"
46819 },
46820 "lint-snap-v2:version_valid": {
46821 "manual_review": false,
46822 "text": "OK"
46823 }46027 }
46824 },46028 },
46825 "warn": {}46029 "warn": {}
@@ -47000,10 +46204,6 @@ test-x11-home_0.1_all.snap: pass
47000 "lint-snap-v2:vcs_files": {46204 "lint-snap-v2:vcs_files": {
47001 "manual_review": false,46205 "manual_review": false,
47002 "text": "OK"46206 "text": "OK"
47003 },
47004 "lint-snap-v2:version_valid": {
47005 "manual_review": false,
47006 "text": "OK"
47007 }46207 }
47008 },46208 },
47009 "warn": {}46209 "warn": {}
@@ -47173,10 +46373,6 @@ test-x11-no-desktop_0.1_all.snap: pass
47173 "lint-snap-v2:vcs_files": {46373 "lint-snap-v2:vcs_files": {
47174 "manual_review": false,46374 "manual_review": false,
47175 "text": "OK"46375 "text": "OK"
47176 },
47177 "lint-snap-v2:version_valid": {
47178 "manual_review": false,
47179 "text": "OK"
47180 }46376 }
47181 },46377 },
47182 "warn": {}46378 "warn": {}
@@ -47341,10 +46537,6 @@ test-x11-no-desktop_0.1_all.snap: pass
47341 "lint-snap-v2:vcs_files": {46537 "lint-snap-v2:vcs_files": {
47342 "manual_review": false,46538 "manual_review": false,
47343 "text": "OK"46539 "text": "OK"
47344 },
47345 "lint-snap-v2:version_valid": {
47346 "manual_review": false,
47347 "text": "OK"
47348 }46540 }
47349 },46541 },
47350 "warn": {}46542 "warn": {}
@@ -47456,10 +46648,6 @@ ubuntu-core_16.04.1+test1_amd64.snap: pass
47456 "lint-snap-v2:vcs_files": {46648 "lint-snap-v2:vcs_files": {
47457 "manual_review": false,46649 "manual_review": false,
47458 "text": "OK"46650 "text": "OK"
47459 },
47460 "lint-snap-v2:version_valid": {
47461 "manual_review": false,
47462 "text": "OK"
47463 }46651 }
47464 },46652 },
47465 "warn": {}46653 "warn": {}
@@ -47562,10 +46750,6 @@ ubuntu-core_16.04.1+test1_amd64.snap: pass
47562 "lint-snap-v2:vcs_files": {46750 "lint-snap-v2:vcs_files": {
47563 "manual_review": false,46751 "manual_review": false,
47564 "text": "OK"46752 "text": "OK"
47565 },
47566 "lint-snap-v2:version_valid": {
47567 "manual_review": false,
47568 "text": "OK"
47569 }46753 }
47570 },46754 },
47571 "warn": {}46755 "warn": {}
@@ -47831,10 +47015,6 @@ vlc_daily+test1_amd64.snap: pass
47831 "lint-snap-v2:vcs_files": {47015 "lint-snap-v2:vcs_files": {
47832 "manual_review": false,47016 "manual_review": false,
47833 "text": "OK"47017 "text": "OK"
47834 },
47835 "lint-snap-v2:version_valid": {
47836 "manual_review": false,
47837 "text": "OK"
47838 }47018 }
47839 },47019 },
47840 "warn": {}47020 "warn": {}
@@ -48099,10 +47279,6 @@ vlc_daily+test1_amd64.snap: pass
48099 "lint-snap-v2:vcs_files": {47279 "lint-snap-v2:vcs_files": {
48100 "manual_review": false,47280 "manual_review": false,
48101 "text": "OK"47281 "text": "OK"
48102 },
48103 "lint-snap-v2:version_valid": {
48104 "manual_review": false,
48105 "text": "OK"
48106 }47282 }
48107 },47283 },
48108 "warn": {}47284 "warn": {}
@@ -48299,10 +47475,6 @@ test-classic_0_all.snap: pass
48299 "lint-snap-v2:vcs_files": {47475 "lint-snap-v2:vcs_files": {
48300 "manual_review": false,47476 "manual_review": false,
48301 "text": "OK"47477 "text": "OK"
48302 },
48303 "lint-snap-v2:version_valid": {
48304 "manual_review": false,
48305 "text": "OK"
48306 }47478 }
48307 },47479 },
48308 "warn": {}47480 "warn": {}
@@ -48498,10 +47670,6 @@ test-classic_0_all.snap: pass
48498 "lint-snap-v2:vcs_files": {47670 "lint-snap-v2:vcs_files": {
48499 "manual_review": false,47671 "manual_review": false,
48500 "text": "OK"47672 "text": "OK"
48501 },
48502 "lint-snap-v2:version_valid": {
48503 "manual_review": false,
48504 "text": "OK"
48505 }47673 }
48506 },47674 },
48507 "warn": {}47675 "warn": {}
@@ -48690,10 +47858,6 @@ test-classic_0_all.snap: pass
48690 "lint-snap-v2:vcs_files": {47858 "lint-snap-v2:vcs_files": {
48691 "manual_review": false,47859 "manual_review": false,
48692 "text": "OK"47860 "text": "OK"
48693 },
48694 "lint-snap-v2:version_valid": {
48695 "manual_review": false,
48696 "text": "OK"
48697 }47861 }
48698 },47862 },
48699 "warn": {}47863 "warn": {}
@@ -125798,10 +124962,6 @@ hello-world_25.snap: FAIL
125798 "lint-snap-v2:vcs_files": {124962 "lint-snap-v2:vcs_files": {
125799 "manual_review": false,124963 "manual_review": false,
125800 "text": "OK"124964 "text": "OK"
125801 },
125802 "lint-snap-v2:version_valid": {
125803 "manual_review": false,
125804 "text": "OK"
125805 }124965 }
125806 },124966 },
125807 "warn": {}124967 "warn": {}
@@ -126113,10 +125273,6 @@ hello-world_25.snap: FAIL
126113 "lint-snap-v2:vcs_files": {125273 "lint-snap-v2:vcs_files": {
126114 "manual_review": false,125274 "manual_review": false,
126115 "text": "OK"125275 "text": "OK"
126116 },
126117 "lint-snap-v2:version_valid": {
126118 "manual_review": false,
126119 "text": "OK"
126120 }125276 }
126121 },125277 },
126122 "warn": {}125278 "warn": {}

Subscribers

People subscribed via source and target branches