mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-16 11:18:11 +08:00
29 lines
1.5 KiB
YAML
29 lines
1.5 KiB
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
before_install:
|
|
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-3.0.0-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.0.0-Linux-x86_64.sh -O miniconda.sh; fi
|
|
- chmod +x miniconda.sh
|
|
- ./miniconda.sh -b
|
|
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then export PATH=/home/travis/miniconda/bin:$PATH; else export PATH=/home/travis/miniconda3/bin:$PATH; fi
|
|
- sudo apt-get install gfortran
|
|
install:
|
|
- conda create -n testenv --yes pip python=$TRAVIS_PYTHON_VERSION
|
|
- source activate testenv
|
|
- conda install --yes -c https://conda.binstar.org/twiecki numpy==1.8.1 scipy nose matplotlib pandas Cython patsy statsmodels tornado pyparsing xlrd mock pytz requests six dateutil ta-lib logbook
|
|
- grep pyflakes== etc/requirements_dev.txt | xargs pip install
|
|
- grep pep8== etc/requirements_dev.txt | xargs pip install
|
|
- grep mccabe== etc/requirements_dev.txt | xargs pip install
|
|
- grep flake8== etc/requirements_dev.txt | xargs pip install
|
|
- grep nose== etc/requirements_dev.txt | xargs pip install
|
|
- grep nose-parameterized== etc/requirements_dev.txt | xargs pip install
|
|
- grep nose-ignore-docstring== etc/requirements_dev.txt | xargs pip install
|
|
- pip install coveralls
|
|
before_script:
|
|
- "flake8 zipline tests"
|
|
script:
|
|
- nosetests --exclude=^test_examples --with-coverage --cover-package=zipline
|
|
after_success:
|
|
- coveralls
|