diff options
-rw-r--r-- | .travis.yml | 8 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..e35fba889 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: python +python: 2.7 +sudo: false +script: +# won't fail, but print problems +- find . -name "*.json" -exec echo {} \; -exec python -mjson.tool {} /dev/null \; 2>&1 |grep --before 1 "Expecting" | cat +# will fail, if linting fails +- find . -name "*.json" -print0 | xargs -I file -n1 -0 python -mjson.tool file /dev/null @@ -1,4 +1,4 @@ -tests +tests [](https://travis-ci.org/ethereum/tests) ===== Common tests for all clients to test against. |