21 строка
590 B
YAML
21 строка
590 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
cache: pip
|
|
install:
|
|
- wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
|
|
- bash miniconda.sh -b -p $HOME/miniconda
|
|
- export PATH="$HOME/miniconda/bin:$PATH"
|
|
- hash -r
|
|
- conda config --set always_yes yes --set changeps1 no
|
|
- conda update -q conda
|
|
# Useful for debugging any issues with conda
|
|
- conda info -a
|
|
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION python-snappy
|
|
- source activate test-environment
|
|
- pip --version
|
|
- pip install .
|
|
|
|
script:
|
|
- python setup.py test
|