diff options
author | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-06-01 03:09:25 +0800 |
---|---|---|
committer | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-06-01 03:26:24 +0800 |
commit | 3dabf27265670f95717ff646841acdfeaccddfb1 (patch) | |
tree | 79d0a60162d5dfa53997f36859e4de035a280bf0 /.travis.yml | |
parent | c572a5b7d5958cba982d9421e45aaa52778c67bf (diff) | |
download | dexon-tests-3dabf27265670f95717ff646841acdfeaccddfb1.tar dexon-tests-3dabf27265670f95717ff646841acdfeaccddfb1.tar.gz dexon-tests-3dabf27265670f95717ff646841acdfeaccddfb1.tar.bz2 dexon-tests-3dabf27265670f95717ff646841acdfeaccddfb1.tar.lz dexon-tests-3dabf27265670f95717ff646841acdfeaccddfb1.tar.xz dexon-tests-3dabf27265670f95717ff646841acdfeaccddfb1.tar.zst dexon-tests-3dabf27265670f95717ff646841acdfeaccddfb1.zip |
.travis.yml: make fail earlier
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index ec6940fde..cd8731f94 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,11 +10,11 @@ install: "pip install jsonschema pysha3" script: # check valid JSON/well formatted -- python3 test.py format -- git diff --quiet &>/dev/null +- python3 test.py format ; + git diff --quiet &>/dev/null ; # check test schemas -- python3 test.py validate ./src/VMTestsFiller ./src/GeneralStateTestsFiller ./src/BlockchainTestsFiller ./VMTests ./GeneralStateTests ./BlockchainTests + python3 test.py validate ./src/VMTestsFiller ./src/GeneralStateTestsFiller ./src/BlockchainTestsFiller ./VMTests ./GeneralStateTests ./BlockchainTests ; # check test filled -- python3 test.py checkFilled ./BlockhcainTests ./GeneralStateTests ./TransactionTests ./VMTests + python3 test.py checkFilled ./BlockhcainTests ./GeneralStateTests ./TransactionTests ./VMTests |