-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (47 loc) · 1.38 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
# Travis configuration file using the build matrix feature
# Read more under http://docs.travis-ci.com/user/build-configuration/
# THIS SCRIPT IS SUPPOSED TO BE AN EXAMPLE. MODIFY IT ACCORDING TO YOUR NEEDS!
language: python
git:
depth: false
env:
- PRE_COMMIT_HOME=$HOME/.cache/pre-commit
virtualenv:
system_site_packages: false
jobs:
fast_finish: true
include:
- python: 3.6
env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py36" COVERAGE="true"
- python: 3.7
env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py37" COVERAGE="false"
- python: 3.8
env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py38" COVERAGE="false"
- python: 3.9
env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py39" COVERAGE="false"
- env: DISTRIB="conda" PYTHON_VERSION="3.8" COVERAGE="false"
install:
- source tests/travis_install.sh
before_script:
- git config --global user.email "[email protected]"
- git config --global user.name "Your Name"
# Useful information in case of debug
- if [[ "$DISTRIB" == "conda" ]]; then conda info -a; fi
- which tox
script:
- tox -e build
- tox
- |
if [[ "$COVERAGE" == "true" ]]; then
pre-commit install
pre-commit run --all-files
fi
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi
after_script:
- travis-cleanup
cache:
pip: true
directories:
- $HOME/miniconda
- $HOME/.cache/pre-commit