Skip to content

Commit

Permalink
added separate test
Browse files Browse the repository at this point in the history
  dependencies
  • Loading branch information
reinout committed Dec 9, 2009
1 parent e64e088 commit 9435219
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ Changes
1.1 (2009-09-18)
----------------

* A local utility implements now IAttributeAnnotatable.
* Updated dependencies (added missing ones and added separate test
dependencies).

* A local utility now implements IAttributeAnnotatable.

* Update code documentation from Grok itself.

Expand Down
1 change: 1 addition & 0 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ interpreter = python
[test]
recipe = zc.recipe.testrunner
eggs = grokcore.site
grokcore.site[test]
defaults = ['--tests-pattern', '^f?tests$', '-v']
16 changes: 10 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ def read(*rnames):
read('CHANGES.txt')
)

tests_require = [
'zope.app.testing',
'zope.app.zcmlfiles',
'zope.component',
'zope.configuration',
'zope.testing',
]

setup(
name='grokcore.site',
version='1.1dev',
Expand Down Expand Up @@ -40,11 +48,7 @@ def read(*rnames):
'zope.app.component',
'zope.app.container',
'zope.interface',
# for tests only, can be moved to [test] extras
'zope.app.testing',
'zope.app.zcmlfiles',
'zope.component',
'zope.configuration',
'zope.testing',
],
tests_require=tests_require,
extras_require={'test': tests_require},
)

0 comments on commit 9435219

Please sign in to comment.