We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5254bc8 commit 1062283Copy full SHA for 1062283
1 file changed
.travis.yml
@@ -1,24 +1,26 @@
1
language: python
2
+dist: xenial
3
python:
4
# To see supported options, run:
5
# s3cmd ls s3://travis-python-archives/binaries/ubuntu/16.04/x86_64/
6
# We put pypy first, b/c for tests they're the slowest
- - pypy2.7-5.10.0
7
- - pypy3.5-5.10.1
+ - pypy2.7-6.0
8
+ - pypy3.5-6.0
9
- 2.7
10
- 3.3 # probably irrelevant but so far supporting it has been free
11
- 3.4
12
- 3.5
13
- 3.6
- - 3.7-dev
14
-sudo: false
+ - 3.7
15
+ - 3.8-dev
16
17
before_install:
- - pip install -r test-requirements.txt
18
+ - pip install -U pip setuptools wheel
19
+ - pip install -Ur test-requirements.txt
20
- pip install codecov
21
22
script:
- - py.test --cov=h11 --cov-config=.coveragerc h11
23
+ - pytest --cov=h11 --cov-config=.coveragerc h11
24
25
after_success:
26
- codecov
0 commit comments