summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing')
-rw-r--r--lib/sqlalchemy/testing/plugin/noseplugin.py10
-rw-r--r--lib/sqlalchemy/testing/suite/requirements.py6
2 files changed, 11 insertions, 5 deletions
diff --git a/lib/sqlalchemy/testing/plugin/noseplugin.py b/lib/sqlalchemy/testing/plugin/noseplugin.py
index c9e12c305..841174834 100644
--- a/lib/sqlalchemy/testing/plugin/noseplugin.py
+++ b/lib/sqlalchemy/testing/plugin/noseplugin.py
@@ -1,11 +1,11 @@
"""Enhance nose with extra options and behaviors for running SQLAlchemy tests.
-This module is imported relative to the "plugins" package as a top level
-package by the sqla_nose.py runner, so that the plugin can be loaded with
-the rest of nose including the coverage plugin before any of SQLAlchemy itself
-is imported, so that coverage works.
+When running ./sqla_nose.py, this module is imported relative to the
+"plugins" package as a top level package by the sqla_nose.py runner,
+so that the plugin can be loaded with the rest of nose including the coverage
+plugin before any of SQLAlchemy itself is imported, so that coverage works.
-When third party libraries use this library, it can be imported
+When third party libraries use this plugin, it can be imported
normally as "from sqlalchemy.testing.plugin import noseplugin".
"""
diff --git a/lib/sqlalchemy/testing/suite/requirements.py b/lib/sqlalchemy/testing/suite/requirements.py
index 5eda39b2b..3ea72adcd 100644
--- a/lib/sqlalchemy/testing/suite/requirements.py
+++ b/lib/sqlalchemy/testing/suite/requirements.py
@@ -1,3 +1,9 @@
+"""Requirement definitions used by the generic dialect suite.
+
+External dialect test suites should subclass SuiteRequirements
+to provide specific inclusion/exlusions.
+
+"""
from ..requirements import Requirements
from .. import exclusions