mirror of
https://github.com/vale981/stocproc
synced 2025-03-05 17:51:42 -05:00
21 lines
470 B
YAML
21 lines
470 B
YAML
language: python
|
|
notifications:
|
|
email: false
|
|
python:
|
|
- '3.4'
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq -y
|
|
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
|
|
- chmod +x miniconda.sh
|
|
- "./miniconda.sh -b"
|
|
- export PATH=/home/travis/miniconda/bin:$PATH
|
|
- conda update --yes conda
|
|
# - conda create -y python=3 pip numpy scipy
|
|
- which python
|
|
- python setup.py build_ext --inplace
|
|
|
|
install:
|
|
- pip freeze
|
|
script:
|
|
- py.test -v tests/
|