git.schokokeks.org
Repositories
Help
Report an Issue
freewvs.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
5c7da81
Branches
Tags
master
v0.1.1
v0.1.2
v0.1.3
v0.1.4
freewvs.git
tests
test_jsonlint.py
disable jsonlint test on python 3.5 due to different behavior of json.dumps()
Hanno Böck
commited
5c7da81
at 2019-12-12 19:10:28
test_jsonlint.py
Blame
History
Raw
import unittest import glob import json import sys import difflib class TestJsonLint(unittest.TestCase): @unittest.skipIf(sys.version_info < (3, 6, 0), "json.dumps force-sorts on python 3.5") def test_json_lint(self): valid = True for f in glob.glob("freewvsdb/*.json"): fp = open(f, "r") orig = fp.read() fp.close() tmp = json.loads(orig) new = json.dumps(tmp, indent=2) if (orig != new): print("json %s not valid" % f) sys.stdout.writelines(difflib.unified_diff(orig, new)) valid = False if not valid: raise Exception("Unlinted json files found") if __name__ == '__main__': unittest.main()