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

Commit

Permalink
required packages changed... fix tests, tho zc.buildout seems to be t…
Browse files Browse the repository at this point in the history
…alky
  • Loading branch information
Adam Groszer committed Jun 3, 2010
1 parent 2b49905 commit acd3e07
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ def read(*rnames):
'zc.buildout',
'zope.traversing',
'zope.security',
'wsgi_intercept',
'mechanize',
'zope.testbrowser',
],
),
install_requires = [
Expand Down
1 change: 1 addition & 0 deletions src/z3c/recipe/paster/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Now, Let's run the buildout and see what we get:

>>> print system(join('bin', 'buildout')),
Develop: '/sample-buildout/demo'
Couldn't find index page for 'wsgi_intercept' (maybe misspelled?)
Installing var.
Installing myapp.
Generated script '/sample-buildout/bin/myapp'.
Expand Down
2 changes: 2 additions & 0 deletions src/z3c/recipe/paster/debug.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,12 @@ Now, Let's run the buildout and see what we get:

>>> print system(join('bin', 'buildout')),
Develop: '/sample-buildout/sample'
Couldn't find index page for 'wsgi_intercept' (maybe misspelled?)
Installing var.
Installing myapp.
Generated script '/sample-buildout/bin/myapp'.
Installing mydebug.
Couldn't find index page for 'wsgi_intercept' (maybe misspelled?)
Generated script '/sample-buildout/bin/mydebug'.

Now check if the setup was correct:
Expand Down
1 change: 1 addition & 0 deletions src/z3c/recipe/paster/paster.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Now, Let's run the buildout and see what we get:

>>> print system(join('bin', 'buildout')),
Develop: '/sample-buildout/sample'
Couldn't find index page for 'wsgi_intercept' (maybe misspelled?)
Installing mypaster.
Generated script '/sample-buildout/bin/mypaster'.

Expand Down
3 changes: 3 additions & 0 deletions src/z3c/recipe/paster/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,12 @@ def setUp(test):
zc.buildout.testing.install('zope.site', test)
zc.buildout.testing.install('zope.size', test)
zc.buildout.testing.install('zope.testing', test)
zc.buildout.testing.install('zope.testbrowser', test)
zc.buildout.testing.install('zope.traversing', test)
zc.buildout.testing.install('zope.contenttype', test)
zc.buildout.testing.install('zope.app.debug', test)
zc.buildout.testing.install('wsgi_intercept', test)
zc.buildout.testing.install('mechanize', test)
zc.buildout.testing.install_develop('z3c.recipe.paster', test)

checker = renormalizing.RENormalizing([
Expand Down

0 comments on commit acd3e07

Please sign in to comment.