forked from jenniferColonell/ecephys_spike_sorting
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
64 lines (61 loc) · 1.86 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
60
61
62
63
64
env:
global:
- PIPENV_VENV_IN_PROJECT=1
- PIPENV_IGNORE_VIRTUALENVS=1
matrix:
include:
- os: linux
sudo: required
python: 2.7
env: TEST_PYTHON_VERSION=2.7
- os: linux
sudo: required
python: 3.5
env: TEST_PYTHON_VERSION=3.5
- 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
languageL: generic
env: TEST_PYTHON_VERSION=3.5
- os: osx
language: generic
env: TEST_PYTHON_VERSION=3.6
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
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
else
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
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
- source activate test-environment
- if [[ "$TRAVIS_OS_NAME" == "osx" && "$TEST_PYTHON_VERSION" == "2.7" ]]; then
conda install virtualenv;
fi
- pip install pipenv
- pipenv --update
- pipenv --python ${TEST_PYTHON_VERSION}
- pipenv install --dev
- pipenv run pip install .
script:
- pipenv run coverage run --source ecephys_spike_sorting -m pytest
- pipenv run codecov