Skip to content

Commit

Permalink
Added test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
reinout committed Dec 9, 2009
1 parent a73798b commit 9327a88
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions buildout.cfg
Expand Up @@ -15,4 +15,5 @@ interpreter = python
[test]
recipe = zc.recipe.testrunner
eggs = grokcore.annotation
grokcore.annotation[test]
defaults = ['--tests-pattern', '^f?tests$', '-v']
13 changes: 8 additions & 5 deletions setup.py
Expand Up @@ -10,6 +10,12 @@ def read(*rnames):
read('CHANGES.txt')
)

tests_require = [
'zope.configuration',
'zope.testing',
]


setup(
name='grokcore.annotation',
version='1.2dev',
Expand Down Expand Up @@ -41,10 +47,7 @@ def read(*rnames):
'zope.component',
'zope.container',
'zope.interface',
# The following two ought to be moved to [test].
'zope.configuration',
'zope.testing',
],
#extras_require={
# 'test': []},
tests_require=tests_require,
extras_require={'test': tests_require},
)

0 comments on commit 9327a88

Please sign in to comment.