mirror of
https://github.com/hydrosquall/tiingo-python.git
synced 2026-01-20 03:34:27 +01:00
28 lines
417 B
YAML
28 lines
417 B
YAML
install:
|
|
- python setup.py develop
|
|
- pip install -U pytest-cov codecov vcrpy
|
|
- tools/install_pandas.sh
|
|
# - pip install -U tox-travis pytest
|
|
|
|
language: python
|
|
python:
|
|
- 3.7
|
|
- 3.6
|
|
- 2.7
|
|
|
|
cache: pip
|
|
|
|
env:
|
|
- WITH_PANDAS=false
|
|
- WITH_PANDAS=true
|
|
|
|
script:
|
|
- export TIINGO_API_KEY=0000000000000000000000000000000000000000
|
|
- py.test --cov=./tiingo
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
after_success:
|
|
- codecov
|