-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
41 lines (35 loc) · 1.18 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
dist: xenial
python:
- "3.7"
- "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 numpy --upgrade --ignore-installed
- pip install cython --upgrade --ignore-installed
- pip install future six pandas mdtraj h5py lmfit MDAnalysis tqdm sphinx sphinx_rtd_theme sphinxcontrib-bibtex matplotlib codecov
# Set display for tests involving matplotlib
services:
- xvfb
script:
- py.test --cov=idpflex idpflex tests
- if [[ "${TRAVIS_PYTHON_VERSION}" == "3.6" ]]; then
flake8;
fi
- if [[ "${TRAVIS_PYTHON_VERSION}" == "3.6" ]]; then
sphinx-build -nT -b html docs docs/_build/html;
fi
notifications:
- on_success: never
- on_failure: never