-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy path.travis.yml
39 lines (33 loc) · 1000 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
sudo: false # travis container-based infrastructure
language: python
python:
- "2.7"
- "3.4"
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:$PATH
# Update conda itself
- conda update --yes conda
install:
- conda create --yes --name=tonic_test_env python=$TRAVIS_PYTHON_VERSION --file=ci/requirements-$TRAVIS_PYTHON_VERSION.txt
- source activate tonic_test_env
- python setup.py install
# command to run tests
script:
- which python
- python --version
- conda list
- pip freeze
- echo $PATH
- vic_utils -h
- py.test
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/0b751ac59ea833728a02
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false