diff options
author | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-05-31 02:42:28 +0800 |
---|---|---|
committer | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-06-01 02:51:53 +0800 |
commit | c572a5b7d5958cba982d9421e45aaa52778c67bf (patch) | |
tree | af2616631c0f3b592115854529888d38e9be68ad | |
parent | 7bfd7998cfc9d4f59f0bc29d9718709d3d15a81e (diff) | |
download | dexon-tests-c572a5b7d5958cba982d9421e45aaa52778c67bf.tar dexon-tests-c572a5b7d5958cba982d9421e45aaa52778c67bf.tar.gz dexon-tests-c572a5b7d5958cba982d9421e45aaa52778c67bf.tar.bz2 dexon-tests-c572a5b7d5958cba982d9421e45aaa52778c67bf.tar.lz dexon-tests-c572a5b7d5958cba982d9421e45aaa52778c67bf.tar.xz dexon-tests-c572a5b7d5958cba982d9421e45aaa52778c67bf.tar.zst dexon-tests-c572a5b7d5958cba982d9421e45aaa52778c67bf.zip |
.travis.yml: enable checking that tests are filled correctly
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 8f7f2d6a1..ec6940fde 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ branches: - master - develop sudo: false -install: "pip install jsonschema" +install: "pip install jsonschema pysha3" script: # check valid JSON/well formatted @@ -15,3 +15,6 @@ script: # check test schemas - python3 test.py validate ./src/VMTestsFiller ./src/GeneralStateTestsFiller ./src/BlockchainTestsFiller ./VMTests ./GeneralStateTests ./BlockchainTests + +# check test filled +- python3 test.py checkFilled ./BlockhcainTests ./GeneralStateTests ./TransactionTests ./VMTests |