Skip to content

Commit

Permalink
add static check as precheck (#238)
Browse files Browse the repository at this point in the history
* add static check as precheck

* made basic index verification part of precheck
  • Loading branch information
williexu authored Jul 17, 2018
1 parent 3cc908c commit 9df787c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ install:
- pip install pylint==1.9.2 flake8 requests wheel==0.30.0 -q
jobs:
include:
- stage: verify
- stage: precheck
env: PURPOSE='SourceStatic'
script: ./scripts/ci/test_static.sh
python: 2.7
- stage: verify
- stage: precheck
env: PURPOSE='SourceStatic'
script: ./scripts/ci/test_static.sh
python: 3.6
- stage: precheck
env: PURPOSE='IndexVerify'
script: python ./scripts/ci/test_index.py -v
python: 3.6
- stage: verify
env: PURPOSE='SourceTests'
script: travis_wait 40 ./scripts/ci/test_source.sh
Expand All @@ -23,10 +27,6 @@ jobs:
env: PURPOSE='SourceTests'
script: travis_wait 40 ./scripts/ci/test_source.sh
python: 3.6
- stage: verify
env: PURPOSE='IndexVerify'
script: python ./scripts/ci/test_index.py -v
python: 3.6
- stage: verify
env: PURPOSE='IndexRefDocVerify'
script: ./scripts/ci/test_index_ref_doc.sh
Expand Down

0 comments on commit 9df787c

Please sign in to comment.