diff options
| -rw-r--r-- | pyramid/tests/test_config.py | 5 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/pyramid/tests/test_config.py b/pyramid/tests/test_config.py new file mode 100644 index 000000000..c8fae18e7 --- /dev/null +++ b/pyramid/tests/test_config.py @@ -0,0 +1,5 @@ +# XXX fix this; nosetests works but setup.py test freaks when +# trying to use the root as a test_suite +from pyramid.config.tests.test_config import * +from pyramid.config.tests.test_views import * +from pyramid.config.tests.test_util import * @@ -75,7 +75,7 @@ setup(name='pyramid', zip_safe=False, install_requires = install_requires, tests_require = tests_require, - test_suite="pyramid", + test_suite="pyramid.tests", entry_points = """\ [paste.paster_create_template] pyramid_starter=pyramid.scaffolds:StarterProjectTemplate |
