forked from danforthcenter/plantcv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (41 loc) · 1.25 KB
/
.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
40
41
language: python
# Switch to container-based builds
sudo: false
# Which versions of Python to test
python:
- "2.7"
# Do not have the virtualenv use system-wide site packages
virtualenv:
system_site_packages: false
# command to install dependencies
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- 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
- conda info -a
# These are the packages we need
- conda create -q -c menpo -n test-environment python=$TRAVIS_PYTHON_VERSION opencv=2.4.11
- source activate test-environment
- pip install coveralls matplotlib scipy scikit-image pytest pandas
# Install PlantCV
install:
- python setup.py install
# command to run tests
script:
- source activate test-environment
- coverage run --source=plantcv setup.py test
# - py.test -v tests/tests.py
after_success:
coveralls
# Which branches to run build tests on
branches:
only:
- master
- dev