Commit 34e961d8 authored by Tres Seaver's avatar Tres Seaver Committed by GitHub

Merge pull request #26 from azmeuk/tox

Added pypy and pypy3 tests
parents 4175652e 6c46a29d
......@@ -20,6 +20,14 @@ matrix:
env: TOXENV=py36-zodb4
- python: 3.6
env: TOXENV=py36-zodb5
- python: pypy
env: TOXENV=pypy-zodb4
- python: pypy
env: TOXENV=pypy-zodb5
- python: pypy3
env: TOXENV=pypy3-zodb4
- python: pypy3
env: TOXENV=pypy3-zodb5
- python: 3.7
env: TOXENV=py37-zodb5
dist: xenial
......
......@@ -7,8 +7,7 @@ Overview
A library which parses URIs and converts them to ZODB storage objects and
database arguments.
It will run under CPython 2.6, and 2.7. It will not run under PyPy or
Jython. It requires ZODB >= 3.10.0.
It will run under CPython 2.6, 2.7, 3.4 to 3.7, pypy and pypy3. It will not run under Jython. It requires ZODB >= 3.10.0.
Installation
------------
......
......@@ -40,6 +40,8 @@ setup(name='zodburi',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: Repoze Public License",
],
keywords='zodb zodbconn',
......
[tox]
envlist =
{py27,py34,py35,py36}-{zodb4,zodb5},py37-zodb5,cover,docs
{py27,py34,py35,py36,pypy,pypy3}-{zodb4,zodb5},py37-zodb5,cover,docs
[testenv]
commands =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment