diff options
| author | Jason Madden <jamadden@gmail.com> | 2017-06-08 14:26:23 -0500 |
|---|---|---|
| committer | Jason Madden <jamadden@gmail.com> | 2017-06-12 09:07:16 -0500 |
| commit | 759af9e08d3e7918f7c8613762e8f777190d912b (patch) | |
| tree | 8a2f4ddda5dcc099c2873309533401528e8ba54b /setup.py | |
| parent | aee89255b1b1b12264bdb2570c7f36f27566b68d (diff) | |
| download | zope-interface-issue85.tar.gz | |
Partially revert #84 in order to fix #85issue85
But add testing to be sure it doesn't break again, and extra
suspenders to ensure the issues that #84 was trying to deal with
doesn't show up either.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -82,7 +82,10 @@ if is_pypy or is_jython or is_pure: features = {} else: features = {'codeoptimization': codeoptimization} -tests_require = ['zope.event'] +tests_require = [ + 'zope.event', + 'zope.testing', +] testing_extras = tests_require + ['nose', 'coverage'] |
