disable jsonlint test on python 3.5 due to different behavior of json.dumps()
Hanno Böck

Hanno Böck commited on 2019-12-12 19:10:28
Zeige 1 geänderte Dateien mit 3 Einfügungen und 0 Löschungen.

... ...
@@ -6,6 +6,9 @@ import difflib
6 6
 
7 7
 
8 8
 class TestJsonLint(unittest.TestCase):
9
+
10
+    @unittest.skipIf(sys.version_info < (3, 6, 0),
11
+                     "json.dumps force-sorts on python 3.5")
9 12
     def test_json_lint(self):
10 13
         valid = True
11 14
         for f in glob.glob("freewvsdb/*.json"):
12 15