"""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".
"""
+"""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
-# /Users/classic/dev/sqlalchemy/./test/lib/profiles.txt
+# /Users/classic/dev/sqlalchemy/./test/profiles.txt
# This file is written out on a per-environment basis.
# For each test in aaa_profiling, the corresponding function and
# environment is located within this file. If it doesn't exist,
-"""Global database feature support policy.
+"""Requirements specific to SQLAlchemy's own unit tests.
-Provides decorators to mark tests requiring specific feature support from the
-target database.
"""