From beb87d104dd69c8363bd87f64e81e1bcc087375c Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 15 Aug 2011 06:18:22 -0400 Subject: appease setup.py test --- pyramid/tests/test_config.py | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 pyramid/tests/test_config.py 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 * diff --git a/setup.py b/setup.py index df73e788b..4c556dbc3 100644 --- a/setup.py +++ b/setup.py @@ -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 -- cgit v1.2.3