aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJared Wasinger <j-wasinger@hotmail.com>2017-07-06 04:00:01 +0800
committerUbuntu <ubuntu@ip-172-31-32-43.us-west-2.compute.internal>2017-08-08 04:41:46 +0800
commit6117849a700de4d1fcb7245b2cfffbd3382c6cf8 (patch)
treef010521a6db40ae6dfe488d4579366f6929b9ab7 /.travis.yml
parent7378b9fa4e883484af856df99a65c28293613e98 (diff)
downloaddexon-tests-6117849a700de4d1fcb7245b2cfffbd3382c6cf8.tar.gz
dexon-tests-6117849a700de4d1fcb7245b2cfffbd3382c6cf8.tar.zst
dexon-tests-6117849a700de4d1fcb7245b2cfffbd3382c6cf8.zip
use JS for json schema validation because the Node 'jsonschema' library is the only one (that I have found) to correctly handle 'additionalProperties' as a boolean (https://spacetelescope.github.io/understanding-json-schema/reference/object.html)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 24267e38a..9aad47f7a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,14 @@
language: python
-python: 2.7
+python:
+ - "2.7"
+node_js:
+ - "7"
sudo: false
-install: "pip install jsonschema"
+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 "$(find GeneralStateTests -name '*.json' ! -path '../schema/*.json')" | python JSONSchema/validate.py
+- echo -e "$(find GeneralStateTests -name '*.json' ! -path '../schema/*.json')" | node JSONSchema/validate.js