-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.travis.yml
46 lines (37 loc) · 1.23 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
language: python
sudo: false
cache:
# Apparently if you override the install command that silently disables the
# cache: pip support. This is less than ideal and I've opened up
# travis-ci/travis-ci#3239 to hopefully get that addressed. For now I'll
# manually add the pip cache directory to the build cache.
directories:
- ~/.cache/pip
env:
global:
# These two environment variables could be set by Travis itself, or Travis
# could configure itself in /etc/, ~/, or inside of the virtual
# environments. In any case if these two values get configured then end
# users only need to enable the pip cache and manually run pip wheel before
# running pip install.
- PIP_WHEEL_DIR=$HOME/.cache/pip/wheels
- PIP_FIND_LINKS=file://$HOME/.cache/pip/wheels
python:
- "2.7"
- "3.6"
cache:
directories:
- $HOME/.pip-cache/
- $HOME/wheelhouse
before_install:
- pip install -U pip
- pip install -r requirements.txt
- pip install pre-commit
- pip install pytest~=3.10.0 pytest-cov
install:
- pip install -e .[test]
script:
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pre-commit run --all-files; fi
- python -m pytest -vv --cov riomucho --cov-report term-missing
after_success:
- coveralls