aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 24267e38ad7a4963ba4c8fc9490a9ec09751c3b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
language: python
python: 2.7
sudo: false
install: "pip 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 "$(find GeneralStateTests -name '*.json' ! -path '../schema/*.json')" | python JSONSchema/validate.py