Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
Cleanup and improve setup
Browse files Browse the repository at this point in the history
Added coverage folder to ignore file list
  • Loading branch information
projekt01 committed Apr 14, 2008
1 parent c97a21a commit f96d2f4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGES.txt
Expand Up @@ -2,8 +2,11 @@
CHANGES
=======

Version 0.5.0 (unreleased)
-------------------------
Version 0.5.0dev (unreleased)
-----------------------------

- bugfix: adjust ITreeItems adapter. Added additional discriminator which
prevents to get missused as /@@/ adapter if configured with base registry

- implemented ITreeItems adapter which is responsible for list all items listed
in tree
Expand Down
13 changes: 11 additions & 2 deletions buildout.cfg
@@ -1,6 +1,6 @@
[buildout]
develop = .
parts = test checker coverage
parts = test checker coverage-test coverage-report

[test]
recipe = zc.recipe.testrunner
Expand All @@ -10,6 +10,15 @@ eggs = z3c.jsontree [test]
recipe = lovely.recipe:importchecker
path = src/z3c/jsontree

[coverage]

[coverage-test]
recipe = zc.recipe.testrunner
eggs = z3c.jsontree [test]
defaults = ['--coverage', '../../coverage']


[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coverage=coverage-report
arguments = ('coverage', 'coverage/report')
4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -62,6 +62,7 @@ def read(*rnames):
'zope.pagetemplate',
'zope.publisher',
'zope.testbrowser',
'zope.testing',
],
),
install_requires = [
Expand All @@ -72,6 +73,9 @@ def read(*rnames):
'zope.app.component',
'zope.app.container',
'zope.component',
'zope.contentprovider',
'zope.i18n',
'zope.i18nmessageid',
'zope.interface',
'zope.proxy',
'zope.publisher',
Expand Down

0 comments on commit f96d2f4

Please sign in to comment.