Skip to content

Commit 80b4c6f

Browse files
committed
Fix pypy testing on Travis
pip dropped support for py32 which was making pypy3 fail travis-ci/travis-ci#6277
1 parent 58fae0d commit 80b4c6f

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.travis.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,23 @@ env:
99
- TOXENV=py34
1010
- TOXENV=py35
1111
- TOXENV=py36
12-
- TOXENV=pypy
13-
- TOXENV=pypy3
1412

1513
matrix:
1614
fast_finish: true
1715

1816
include:
19-
- python: "nightly"
17+
- python: nightly
2018
env: TOXENV=py37
19+
- python: pypy-5.4
20+
env: TOXENV=pypy_54
21+
- python: pypy3.3-5.2-alpha1
22+
env: TOXENV=pypy33
2123

2224
allow_failures:
2325
- env: TOXENV=py26
24-
- env: TOXENV=pypy3
25-
- python: "nightly"
26+
- env: TOXENV=pypy_54
27+
- env: TOXENV=pypy33
28+
- python: nightly
2629

2730
install:
2831
- pip install tox coveralls codecov

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ envlist =
77
py35,
88
py36,
99
py37,
10-
pypy,
11-
pypy3,
10+
pypy_54,
11+
pypy33,
1212
flake8
1313

1414
[testenv]

0 commit comments

Comments
 (0)