forked from vxgmichel/aioconsole
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (31 loc) · 703 Bytes
/
.travis.yml
File metadata and controls
35 lines (31 loc) · 703 Bytes
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
os: linux
dist: xenial
language: python
python:
- 3.5
- pypy3.5
- 3.6
- 3.7
- 3.8-dev
matrix:
include:
# Linux - 3.4
- os: linux
dist: trusty
language: python
python: 3.4
# OSX - 3.6
- os: osx
language: generic
env: MACPYTHON=3.6.8
before_install: source .travis-osx-install
script: python setup.py test --addopts "--basetemp=$TMPDIR/pytest"
# OSX - 3.7
- os: osx
language: generic
env: MACPYTHON=3.7.2
before_install: source .travis-osx-install
script: python setup.py test --addopts "--basetemp=$TMPDIR/pytest"
install: pip install -U coveralls pytest
script: python setup.py test
after_success: coveralls