forked from crusaderky/recursive_diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (46 loc) · 1.36 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
# Based on http://conda.pydata.org/docs/travis.html
language: python
sudo: false # use container based build
notifications:
email: false
branches:
except:
- fix-docs
matrix:
fast_finish: true
include:
- env: CONDA_ENV=flake8
- env: CONDA_ENV=minimal
- env: CONDA_ENV=no_optionals
- env: CONDA_ENV=py35
- env: CONDA_ENV=py36
- env: CONDA_ENV=py37
- env: CONDA_ENV=conda-forge
- env: CONDA_ENV=docs
allow_failures:
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-3.16.0-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 --set show_channel_urls true
- conda update -q conda
- conda info -a
install:
- conda env create -n test_env --file ci/requirements-$CONDA_ENV.yml;
- source activate test_env
- conda list
- pip install --no-deps -e .
script:
- if [[ "$CONDA_ENV" != "flake8" ]]; then
python -c "import recursive_diff";
fi
- if [[ "$CONDA_ENV" == "docs" ]]; then
sphinx-build -n -j auto -b html -d _build/doctrees doc _build/html;
elif [[ "$CONDA_ENV" == "flake8" ]]; then
flake8;
else
py.test recursive_diff --cov=recursive_diff --cov-config ci/.coveragerc --cov-report term-missing --verbose $EXTRA_FLAGS;
fi
after_success:
- coveralls