forked from AllenInstitute/AllenSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
59 lines (55 loc) · 1.61 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
branches:
only:
- master
- internal
env:
global:
- TEST_NWB_FILES=skip
- TEST_OBSERVATORY_EXPERIMENT_PLOTS_DATA=skip
- TEST_API_ENDPOINT=http://api.brain-map.org
- TEST_COMPLETE=false
matrix:
include:
- os: linux
sudo: required
python: 2.7
env: TEST_PYTHON_VERSION=2.7
- os: linux
sudo: required
python: 3.6
env: TEST_PYTHON_VERSION=3.6
- os: osx
language: generic
env: TEST_PYTHON_VERSION=2.7
- os: osx
language: generic
env: TEST_PYTHON_VERSION=3.6
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo apt-get update;
if [[ "$TEST_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
else
brew update;
if [[ "$TEST_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-MacOSX-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh;
fi
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 create -q -n test-environment python=$TEST_PYTHON_VERSION pip
- source activate test-environment
- pip install codecov
- pip install -r test_requirements.txt
- pip install .
script:
- py.test --cov=allensdk
- codecov