blob: 9aad47f7a5ee317f5024f000831fea01e3d29140 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
language: python
python:
- "2.7"
node_js:
- "7"
sudo: false
install: "npm install jsonschema"
script:
# won't fail, but print problems
- find . -name "*.json" -not -name "*Filler.json" -exec echo {} \; -exec python -mjson.tool {} /dev/null \; 2>&1 | grep -v -B 1 "^\./" | cat
# will fail, if linting fails
- find . -name "*.json" -not -name "*Filler.json" -print0 | xargs -I file -n1 -0 python -mjson.tool file /dev/null
# run schema tests against GeneralStateTests
- echo -e "$(find GeneralStateTests -name '*.json' ! -path '../schema/*.json')" | node JSONSchema/validate.js
|