[Mod] move requirements-travis.txt to /travis/folder

[Add] added format check
This commit is contained in:
nanoric 2019-01-07 02:36:46 -04:00
parent 88002bc315
commit 121cdccdb0
2 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
language: python language: python
python: python:
- "3.7" - "3.7-dev"
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install -r requirements-travis.txt - pip install -r travis/requirements.txt
- pip install -r requirements-dev.txt - pip install -r requirements-dev.txt
# command to run tests # command to run tests
script: script:
- yapf --style .style.yapf - python travis/format_check.py
- pylint --rcfile=.pylintrc vnpy - pylint --rcfile=.pylintrc vnpy
- python tests/test_all.py - python tests/test_all.py