From 047cfab3d5769625611bdec281395a09beca9655 Mon Sep 17 00:00:00 2001 From: Ruda Porto Filgueiras Date: Thu, 11 Oct 2018 13:59:17 +0200 Subject: [PATCH] Added travis and tox configuration for pypy 2.7 and 3.5. --- .travis.yml | 4 ++++ tox.ini | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ac94a88..f1eea47 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,10 @@ matrix: env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 + - python: pypy2.7 + env: TOXENV=pypy27 + - python: pypy3.5 + env: TOXENV=pypy35 install: - pip install tox diff --git a/tox.ini b/tox.ini index e45862c..281ac91 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.7.2 -envlist = flake8, py3flake8, py27, py33, py34, py35, py36 +envlist = flake8, py3flake8, py27, py33, py34, py35, py36, pypy27, pypy35 skip_missing_interpreters = true [testenv]