diff options
author | Tres Seaver <tseaver@palladion.com> | 2016-04-15 01:57:32 -0400 |
---|---|---|
committer | Tres Seaver <tseaver@palladion.com> | 2016-04-15 01:57:32 -0400 |
commit | 9208c112f268cc68d0f20b3309434df1701b5c0d (patch) | |
tree | c4238855317bb5129732827caa6201ccbc77a7ed | |
parent | 8d998c3a9e6ce982600ea5bdb491a926971aa5b7 (diff) | |
download | zope-interface-revert-35-add-pure-test-support.tar.gz |
Revert "Add support for building/testing w/ 'PURE_PYTHON' defined."revert-35-add-pure-test-support
-rw-r--r-- | setup.py | 3 | ||||
-rw-r--r-- | tox.ini | 12 |
2 files changed, 2 insertions, 13 deletions
@@ -79,12 +79,11 @@ else: py_impl = getattr(platform, 'python_implementation', lambda: None) is_pypy = py_impl() == 'PyPy' is_jython = 'java' in sys.platform - is_pure = 'PURE_PYTHON' in os.environ # Jython cannot build the C optimizations, while on PyPy they are # anti-optimizations (the C extension compatibility layer is known-slow, # and defeats JIT opportunities). - if is_pypy or is_jython or is_pure: + if is_pypy or is_jython: features = {} else: features = {'codeoptimization': codeoptimization} @@ -1,6 +1,6 @@ [tox] envlist = - py27,py27-pure,py33,py34,py34-pure,py35,pypy,pypy3,coverage,docs + py27,py33,py34,py35,pypy,pypy3,coverage,docs [testenv] commands = @@ -8,16 +8,6 @@ commands = deps = zope.event -[testenv:py27-pure] -setenv = - PURE_PYTHON=1 - PIP_CACHE_DIR = {envdir}/.cache - -[testenv:py34-pure] -setenv = - PURE_PYTHON=1 - PIP_CACHE_DIR = {envdir}/.cache - [testenv:py] commands = python --version |