[Mod] move travis/ into tools/ci

This commit is contained in:
nanoric 2019-01-18 01:28:04 -04:00
parent 499ffd9491
commit 726089b2d8
3 changed files with 2 additions and 2 deletions

View File

@ -3,10 +3,10 @@ python:
- "3.7-dev" - "3.7-dev"
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install -r travis/requirements.txt - pip install -r tools/ci/requirements.txt
- pip install -r requirements-dev.txt - pip install -r requirements-dev.txt
# command to run tests # command to run tests
script: script:
- python travis/format_check.py - python tools/ci/format_check.py
- pylint --rcfile=.pylintrc vnpy - pylint --rcfile=.pylintrc vnpy
- python tests/test_all.py - python tests/test_all.py