Commit c0ac0053 authored by Denis Bilenko's avatar Denis Bilenko

test__all__.py: remove reference to removed module sslold

parent 00912196
......@@ -5,7 +5,6 @@ import types
from greentest import walk_modules
SKIP = ['sslold']
MAPPING = {'gevent.local': '_threading_local'}
......@@ -160,8 +159,7 @@ are missing from %r:
for path, modname in walk_modules():
modname = modname.replace('gevent.', '')
if modname not in SKIP:
exec '''def test_%s(self): self._test("gevent.%s")''' % (modname, modname)
exec '''def test_%s(self): self._test("gevent.%s")''' % (modname, modname)
del path, modname
......
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