Skip to content

Commit 1062283

Browse files
committed
Fix CI
1 parent 5254bc8 commit 1062283

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.travis.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
language: python
2+
dist: xenial
23
python:
34
# To see supported options, run:
45
# s3cmd ls s3://travis-python-archives/binaries/ubuntu/16.04/x86_64/
56
# We put pypy first, b/c for tests they're the slowest
6-
- pypy2.7-5.10.0
7-
- pypy3.5-5.10.1
7+
- pypy2.7-6.0
8+
- pypy3.5-6.0
89
- 2.7
910
- 3.3 # probably irrelevant but so far supporting it has been free
1011
- 3.4
1112
- 3.5
1213
- 3.6
13-
- 3.7-dev
14-
sudo: false
14+
- 3.7
15+
- 3.8-dev
1516

1617
before_install:
17-
- pip install -r test-requirements.txt
18+
- pip install -U pip setuptools wheel
19+
- pip install -Ur test-requirements.txt
1820
- pip install codecov
1921

2022
script:
21-
- py.test --cov=h11 --cov-config=.coveragerc h11
23+
- pytest --cov=h11 --cov-config=.coveragerc h11
2224

2325
after_success:
2426
- codecov

0 commit comments

Comments
 (0)