aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: ec6940fde574ada8b1da34f1efbfa7a3f056ae15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: python
python: 
  - "3.6"
branches:
  only:
    - master
    - develop
sudo: false
install: "pip install jsonschema pysha3"
script:

# check valid JSON/well formatted
- 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

# check test filled
- python3 test.py checkFilled ./BlockhcainTests ./GeneralStateTests ./TransactionTests ./VMTests