-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
37 lines (31 loc) · 921 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
language: python
xdist: xenial
python:
- "3.5"
- "3.6"
env: PYTHONPATH=$PYTHONPATH:$TRAVIS_BUILD_DIR/tests
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-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
install:
- conda create -q -n testenv python=$TRAVIS_PYTHON_VERSION pytest-cov
- if [[ "${TRAVIS_PYTHON_VERSION}" == "3.6" ]]; then
conda install --yes -n testenv flake8;
fi
- source activate testenv
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
# Set display for tests involving matplotlib
services:
- xvfb
script:
- pytest --cov=nscsim tests/unit
- if [[ "${TRAVIS_PYTHON_VERSION}" == "3.6" ]]; then
flake8;
fi
notifications:
- on_success: never
- on_failure: never