2019-01-07 06:20:39 +00:00
|
|
|
language: python
|
|
|
|
python:
|
2019-01-07 06:36:46 +00:00
|
|
|
- "3.7-dev"
|
2019-01-07 06:20:39 +00:00
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt
|
2019-01-18 05:28:04 +00:00
|
|
|
- pip install -r tools/ci/requirements.txt
|
2019-01-07 06:20:39 +00:00
|
|
|
- pip install -r requirements-dev.txt
|
|
|
|
# command to run tests
|
|
|
|
script:
|
2019-01-24 09:43:22 +00:00
|
|
|
- python tools/ci/check_format.py
|
2019-01-07 06:20:39 +00:00
|
|
|
- pylint --rcfile=.pylintrc vnpy
|
|
|
|
- python tests/test_all.py
|