-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
39 lines (39 loc) · 1.04 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
language: python
matrix:
include:
- os: linux
python: 3.5
dist: xenial
- os: linux
python: 3.6
dist: xenial
- os: linux
python: 3.7
dist: xenial
- os: linux
python: 3.8-dev
dist: xenial
# shamelessly stolen from https://github.com/pyload/pyload
- os: osx
language: sh
env:
- HOMEBREW_NO_INSTALL_CLEANUP=1
- HOMEBREW_NO_ANALYTICS=1
before_cache:
- rm -f "$HOME/Library/Caches/pip/log/debug.log"
cache:
directories:
- "$HOME/Library/Caches/pip"
addons:
homebrew:
packages: python3
before_install:
- python3 -m pip install --upgrade virtualenv
- virtualenv -p python3 --system-site-packages "$HOME/venv"
- source "$HOME/venv/bin/activate"
install:
- pip install .[tests]
- pip install coveralls
script: pytest
after_success:
- coveralls