From ad37d0db930edf773221cfad40582618c821cb48 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sun, 22 Apr 2018 19:56:38 -0700 Subject: [PATCH] add pypy3 target to travis builds --- .travis.yml | 2 ++ tox.ini | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cd3a253b..8ac5681b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,8 @@ matrix: env: TOXENV=py36 - python: pypy env: TOXENV=pypy + - python: pypy3 + env: TOXENV=pypy3 - python: 3.6 env: TOXENV=docs install: diff --git a/tox.ini b/tox.ini index c326cd0f..84924a79 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=flake8,py27,py34,py35,py36,pypy,docs,coverage +envlist=flake8,py27,py34,py35,py36,pypy,pypy3,docs,coverage skip_missing_interpreters=True [testenv] @@ -16,6 +16,7 @@ basepython = py35: python3.5 py36: python3.6 pypy: pypy + pypy3: pypy3 [testenv:flake8] basepython=python3.6