summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2017-06-08 14:26:23 -0500
committerJason Madden <jamadden@gmail.com>2017-06-12 09:07:16 -0500
commit759af9e08d3e7918f7c8613762e8f777190d912b (patch)
tree8a2f4ddda5dcc099c2873309533401528e8ba54b /setup.py
parentaee89255b1b1b12264bdb2570c7f36f27566b68d (diff)
downloadzope-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.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 1b6fb13..630a11a 100644
--- a/setup.py
+++ b/setup.py
@@ -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']