diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-01-11 22:39:40 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-01-11 22:39:40 +0000 |
| commit | b07cfed841c83498a2c8c9153367525f725cd100 (patch) | |
| tree | 3f95021a65e3da7cb35d0782a70524239b8ce17c /setup.py | |
| parent | 6e18779652d2d02370c94bed040d55f2808e37f4 (diff) | |
| download | pyramid-b07cfed841c83498a2c8c9153367525f725cd100.tar.gz pyramid-b07cfed841c83498a2c8c9153367525f725cd100.tar.bz2 pyramid-b07cfed841c83498a2c8c9153367525f725cd100.zip | |
- Tests can be run with coverage output if you've got ``nose``
installed in the interpreter which you use to run tests. Using an
interpreter with ``nose`` installed, do ``python setup.py
nosetests`` within a checkout of the ``repoze.bfg`` package to see
test coverage output.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,12 +29,12 @@ except IOError: README = CHANGES = '' install_requires=[ + 'setuptools', 'chameleon.core [lxml] >= 1.0b13', 'chameleon.genshi >= 1.0b2', 'chameleon.zpt >= 1.0b8', 'PasteScript', 'Routes', - 'setuptools', 'WebOb', 'zope.interface', 'zope.component', @@ -66,7 +66,7 @@ setup(name='repoze.bfg', namespace_packages=['repoze', 'repoze.bfg'], zip_safe=False, install_requires = install_requires, - tests_require= install_requires + ['Sphinx', 'docutils'], + tests_require= install_requires + ['Sphinx', 'docutils', 'coverage'], test_suite="repoze.bfg.tests", entry_points = """\ [paste.paster_create_template] |
