forked from BoboTiG/python-mss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (43 loc) · 814 Bytes
/
.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
language: python
dist: xenial
matrix:
fast_finish: true
include:
- os: linux
python: "3.7"
env: TOXENV=lint
- os: linux
python: "3.7"
env: TOXENV=types
- os: linux
python: "3.7"
env: TOXENV=docs
- os: osx
language: generic
env:
- PYTHON_VERSION=3.7
- TOXENV=py37
- os: linux
python: "3.5"
env: TOXENV=py35
- os: linux
python: "3.6"
env: TOXENV=py36
- os: linux
python: "3.7"
env: TOXENV=py37
- os: linux
python: "pypy3.5"
env: TOXENV=pypy3
addons:
apt:
packages:
- lsof
services:
- xvfb
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash .travis/install.sh; fi
install:
- python -m pip install --upgrade pip tox
script:
- tox