summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/plugin/noseplugin.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-03-27 13:17:20 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-03-27 13:17:20 -0400
commite3a1a2d01c83e9451527b0c5ac316d9a510ac5bc (patch)
treef12ebc229eaa2397c2f80ff555c8941a556c50c1 /lib/sqlalchemy/testing/plugin/noseplugin.py
parentb6411ee3cfe63d461b73e9aa8e69c6c550ddb649 (diff)
downloadsqlalchemy-e3a1a2d01c83e9451527b0c5ac316d9a510ac5bc.tar.gz
- fixes to multi-backend tests
- move the logic to determine "test id" into plugin_base - update callcounts
Diffstat (limited to 'lib/sqlalchemy/testing/plugin/noseplugin.py')
-rw-r--r--lib/sqlalchemy/testing/plugin/noseplugin.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/plugin/noseplugin.py b/lib/sqlalchemy/testing/plugin/noseplugin.py
index a68eb88cf..18a1178a6 100644
--- a/lib/sqlalchemy/testing/plugin/noseplugin.py
+++ b/lib/sqlalchemy/testing/plugin/noseplugin.py
@@ -69,7 +69,9 @@ class NoseSQLAlchemy(Plugin):
return plugin_base.want_class(cls)
def beforeTest(self, test):
- plugin_base.before_test(test, test.id())
+ plugin_base.before_test(test,
+ test.test.cls.__module__,
+ test.test.cls, test.test.method.__name__)
def afterTest(self, test):
plugin_base.after_test(test)