Merge pull request #1384 from Kodiologist/test-pypy3

Test PyPy3 on Travis
This commit is contained in:
gilch 2017-08-26 23:46:30 -06:00 committed by GitHub
commit 63958403b4
4 changed files with 6 additions and 4 deletions

View File

@ -6,8 +6,8 @@ python:
- "3.5"
- "3.6"
- pypy
- pypy3
install:
- pip install --upgrade pytest
- pip install -r requirements-travis.txt
- pip install -e .
script: pytest

View File

@ -1,9 +1,9 @@
-r requirements-travis.txt
# test tools
pytest
tox
# documentation
Pygments>=1.6
Pygments >= 1.6
Sphinx
sphinx_rtd_theme

View File

@ -1,3 +1,5 @@
pytest >= 3.2.1
# code quality
flake8
coverage

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,pypy,py34,py35,py36,flake8
envlist = py27,pypy,py34,py35,py36,pypy3,flake8
skipsdist = True
[testenv]