Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
language: python
dist: trusty
sudo: false

python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"

install:
- PIP_USE_MIRRORS=true PIP_DOWNLOAD_CACHE=~/.cache/pip pip install tox
- travis_retry pip install --upgrade pip
- travis_retry pip install tox pytest

script:
- PIP_USE_MIRRORS=true PIP_DOWNLOAD_CACHE=~/.cache/pip tox

- tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To test compatibility across Python releases::
tox

rfc6266 is currently tested under Python 2.7, Python 2.6,
Python 3.3, Python 3.2, and PyPy (1.7).
Python 3.3, Python 3.4, Python 3.5, Python 3.6 and PyPy (1.7), PyPy(5.10.0) for Python3.

.. image:: https://secure.travis-ci.org/g2p/rfc6266.png
:target: https://secure.travis-ci.org/g2p/rfc6266
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py27,py26,py32,py33,pypy
envlist=py27,py26,py33,py34,py35,py36,pypy,pypy3

[testenv]
deps=
Expand Down