Skip to content

Commit

Permalink
Fix tests by using the appropriate ZODB extra.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Oct 23, 2018
1 parent dd78f50 commit 3682256
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ initialization =
import sys
import warnings
warnings.simplefilter('default')
eggs = Zope
eggs = Zope[test]


[scripts]
Expand Down Expand Up @@ -67,7 +67,7 @@ eggs =
MultiMapping
Persistence
zExceptions
Zope
Zope[test]
# Test optional dependencies.
five.localsitemanager
Missing
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ def _read_file(filename):
'zope.traversing',
'zope.viewlet',
],
extras_require={
'test': [
'ZODB[test]',
],
},
include_package_data=True,
zip_safe=False,
entry_points={
Expand Down

0 comments on commit 3682256

Please sign in to comment.