Commit 3c118b8a authored by Stefan Behnel's avatar Stefan Behnel

explicitly disable object-in-buffer tests in PyPy

parent 0edf9e4c
......@@ -19,6 +19,11 @@ import sys
#import re
exclude = []#re.compile('object').search]
if getattr(sys, 'pypy_version_info', None) is not None:
# disable object-in-buffer tests in PyPy
import re
exclude.append(re.compile('object').search)
def testcase(func):
for e in exclude:
if e(func.__name__):
......
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