Skip to content

Commit

Permalink
Provide PyPy support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Jul 6, 2016
1 parent bcf1cb7 commit 31212aa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Expand Up @@ -6,7 +6,7 @@ Changelog

- Add dependency on ``zdaemon`` (split off from ``ZODB``).

- Claim support for Python 3.4 and 3.5.
- Claim support for Python 3.4, 3.5 and PyPy.

4.0.0a1 (2013-03-03)
--------------------
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Expand Up @@ -57,6 +57,9 @@ def read(*rnames):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
Expand Down
4 changes: 2 additions & 2 deletions src/zope/app/appsetup/testlayer.txt
Expand Up @@ -79,8 +79,8 @@ We start with a derived layer, based on ZODBLayer that has some setup code:
... transaction.commit()

>>> layer = CustomZODBLayer(testpackage)
>>> layer
<CustomZODBLayer object at ...>
>>> layer.__class__
<class 'CustomZODBLayer'>

Now, when running tests in this layer, each test sees the prepopulated
database but is still isolated from other tests' changes:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33, py34, py35
envlist = py26, py27, py33, py34, py35, pypy

[testenv]
commands =
Expand Down

0 comments on commit 31212aa

Please sign in to comment.