vnpy/.travis.yml

76 lines
2.7 KiB
YAML
Raw Normal View History

2019-01-07 06:20:39 +00:00
language: python
2019-03-19 05:41:54 +00:00
cache: pip
2019-03-19 05:41:54 +00:00
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
2019-01-07 06:20:39 +00:00
python:
2019-03-19 05:41:54 +00:00
- "3.7"
services:
- mongodb
- mysql
- postgresql
2019-03-19 05:41:54 +00:00
before_script:
2019-04-15 05:26:45 +00:00
- psql -d postgresql://postgres:${VNPY_TEST_POSTGRESQL_PASSWORD}@localhost -c "create database vnpy;"
- mysql -u root --password=${VNPY_TEST_MYSQL_PASSWORD} -e 'CREATE DATABASE vnpy;'
script:
2019-04-14 09:58:18 +00:00
- pip install psycopg2 mongoengine pymysql # we should support all database in test environment
2019-04-14 17:23:02 +00:00
- cd tests; source travis_env.sh;
- python test_all.py
2019-03-19 05:41:54 +00:00
matrix:
include:
2019-03-19 11:31:28 +00:00
- name: "pip install under Windows"
os: "windows"
2019-04-14 10:07:20 +00:00
services: [] # service is unavailable under windows
2019-03-29 10:13:38 +00:00
# language : cpp is necessary for windows
2019-03-19 11:31:28 +00:00
language: "cpp"
env:
2019-04-15 03:30:19 +00:00
- PATH="/c/Python37:/c/Python37/Scripts:/c/tools/mysql/current/bin:/c/Program Files/PostgreSQL/10/bin:$PATH"
2019-03-19 11:31:28 +00:00
before_install:
2019-04-14 10:42:16 +00:00
- choco install -yf mysql mongodb
2019-04-15 05:26:45 +00:00
# I don't know how enable a "trust" auth method in choco installed psql
- choco install -yf postgresql10 --params '/Password:1234'
- export VNPY_TEST_POSTGRESQL_PASSWORD=1234
2019-04-14 10:42:16 +00:00
- choco install -yf python3 --version 3.7.2
2019-03-19 11:31:28 +00:00
install:
- python -m pip install --upgrade pip wheel setuptools
2019-04-03 06:46:43 +00:00
- pip install https://pip.vnpy.com/colletion/TA_Lib-0.4.17-cp37-cp37m-win_amd64.whl
- pip install https://pip.vnpy.com/colletion/ibapi-9.75.1-001-py3-none-any.whl
2019-03-19 11:31:28 +00:00
- pip install -r requirements.txt
- pip install .
2019-04-15 05:26:45 +00:00
- name: "pip install under osx"
os: osx
services: []
before_script: []
language: shell # osx supports only shell
before_install: []
2019-03-19 05:41:54 +00:00
install:
2019-04-15 05:26:45 +00:00
- pip3 install https://pip.vnpy.com/colletion/ibapi-9.75.1-001-py3-none-any.whl
- bash ./install.sh python3 pip3
2019-04-15 05:41:02 +00:00
script:
- pip3 install psycopg2 mongoengine pymysql # we should support all database in test environment
- cd tests; source travis_env.sh;
- python3 test_all.py
2019-04-14 17:26:32 +00:00
- name: "pip install under Ubuntu: gcc-8"
before_install:
# C++17
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -y
install:
# C++17
- sudo apt-get install -y gcc-8 g++-8
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 90
- sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-8 90
- sudo update-alternatives --install /usr/bin/gcc cc /usr/bin/gcc-8 90
# update pip & setuptools
- python -m pip install --upgrade pip wheel setuptools
# Linux install script
- pip install https://pip.vnpy.com/colletion/ibapi-9.75.1-001-py3-none-any.whl
- bash ./install.sh