Skip to content

Commit 4c75e8b

Browse files
committed
Configure cpython/pypy versions for travis builds
Resolves: #44
1 parent 80eec77 commit 4c75e8b

2 files changed

Lines changed: 26 additions & 5 deletions

File tree

.travis.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
11
language: python
2+
3+
matrix:
4+
include:
5+
- python: 2.7
6+
env: TOXENV=py27
7+
- python: 3.2
8+
env: TOXENV=py32
9+
- python: 3.3
10+
env: TOXENV=py33
11+
- python: 3.4
12+
env: TOXENV=py34
13+
- python: 3.5
14+
env: TOXENV=py35
15+
- python: 3.6
16+
env: TOXENV=py36
17+
- python: pypy
18+
env: TOXENV=pypy
19+
- python: pypy3
20+
env: TOXENV=pypy3
21+
222
install:
323
- pip install tox
24+
425
script:
5-
- tox -- --ro-functional
26+
- tox -e ${TOXENV} -- --ro-functional
27+
628
notifications:
729
email: true
830
on_success: never

tox.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[tox]
2-
envlist = py27,py3
2+
envlist = py27,py32,py33,py34,py35,py36,pypy,pypy3
33

44
[testenv]
55
sitepackages = True
66
deps =
7-
requests
8-
pep8
9-
coverage
7+
-rrequirements.txt
8+
-rtest-requirements.txt
109
commands =
1110
python setup.py test []

0 commit comments

Comments
 (0)