Commit c07affbf authored by Tres Seaver's avatar Tres Seaver

Replace 'zope.testing.testrunner' -> 'zope.testrunner'.

parent 44f8122c
...@@ -54,17 +54,18 @@ setup(name='Products.%s' % NAME, ...@@ -54,17 +54,18 @@ setup(name='Products.%s' % NAME,
], ],
tests_require=[ tests_require=[
'zope.testing >= 3.7.0', 'zope.testing >= 3.7.0',
'zope.testrunner',
], ],
extras_require={'docs':['Sphinx', extras_require={'docs':['Sphinx',
'repoze.sphinx.autointerface', 'repoze.sphinx.autointerface',
'pkginfo'] 'pkginfo']
}, },
test_loader='zope.testing.testrunner.eggsupport:SkipLayers', test_loader='zope.testrunner.eggsupport:SkipLayers',
test_suite='Products.%s.tests' % NAME, test_suite='Products.%s.tests' % NAME,
entry_points=""" entry_points="""
[zope2.initialize] [zope2.initialize]
Products.%s = Products.%s:initialize Products.%s = Products.%s:initialize
[distutils.commands] [distutils.commands]
ftest = zope.testing.testrunner.eggsupport:ftest ftest = zope.testrunner.eggsupport:ftest
""" % (NAME, NAME), """ % (NAME, 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