forked from python-hyper/h2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
language: python
branches:
only:
- master
- /^\d+\.\d+\.X$/
cache:
directories:
- $HOME/.cache/pip
- .hypothesis
matrix:
include:
# Main tests on supported Python versions.
- python: "2.7"
dist: trusty
env: TOXENV=py27
- python: "3.4"
dist: trusty
env: TOXENV=py34
- python: "3.5"
dist: trusty
env: TOXENV=py35
- python: "3.6"
dist: trusty
env: TOXENV=py36
- python: "3.7"
dist: xenial
env: TOXENV=py37
- python: "pypy-5.3.1"
dist: trusty
env: TOXENV=pypy
# Linting, docs, and other non-test stuff.
- python: "3.7"
dist: xenial
env: TOXENV=lint
- python: "3.7"
dist: xenial
env: TOXENV=docs
- python: "3.7"
dist: xenial
env: TOXENV=packaging
# Test we haven't broken our major dependencies.
- python: "2.7"
dist: trusty
env: TOXENV=py27-twistedMaster
install:
- "pip install -U pip setuptools"
- "pip install -U tox"
script:
- tox -- --hypothesis-profile travis