diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-02-28 16:13:26 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-02-28 16:13:26 -0500 |
| commit | cd655cf0996de682365201a0184170256da6859b (patch) | |
| tree | 42095d6e21f92d9e93aa4d5b8eb1fdec669ff740 /test/bootstrap/noseplugin.py | |
| parent | fd9dd2280003707c97cf9e928ac474d2d8f9c20d (diff) | |
| download | sqlalchemy-cd655cf0996de682365201a0184170256da6859b.tar.gz | |
remove the "produce test" approach from the polymorphic_rel tests,
break out fixtures into a separate module which will be
used by some future test suites as well
Diffstat (limited to 'test/bootstrap/noseplugin.py')
| -rw-r--r-- | test/bootstrap/noseplugin.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/bootstrap/noseplugin.py b/test/bootstrap/noseplugin.py index c9e85c8dc..89b164cbc 100644 --- a/test/bootstrap/noseplugin.py +++ b/test/bootstrap/noseplugin.py @@ -124,6 +124,8 @@ class NoseSQLAlchemy(Plugin): if not issubclass(cls, fixtures.TestBase): return False + elif cls.__name__.startswith('_'): + return False else: if hasattr(cls, 'setup_class'): existing_setup = cls.setup_class.im_func |
