diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-01-22 13:19:22 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-01-22 13:19:22 -0500 |
commit | c9a1e570ad68028e0de0551155caeae313c9c7fd (patch) | |
tree | 93b194dd8c99481f1c8f3b354eab3d6eda6d0ac2 /test/lib/requires.py | |
parent | 959d7cbe33ee2e39e2a43b6e7a9c1a750664d569 (diff) | |
download | sqlalchemy-c9a1e570ad68028e0de0551155caeae313c9c7fd.tar.gz |
- rework the test suite to make use of SkipTest for tests skipped, unsupported, etc.
so that we can get an accurate picture what's really running/not, what's installed on jenkins, etc.
Tested in cpython 2.7 so far, we'll see what jenkins says about other platforms
Diffstat (limited to 'test/lib/requires.py')
-rw-r--r-- | test/lib/requires.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/requires.py b/test/lib/requires.py index 65ad0aa8f..89b9a317b 100644 --- a/test/lib/requires.py +++ b/test/lib/requires.py @@ -20,7 +20,7 @@ from test.lib import config import testing import sys -def deferrable_constraints(fn): +def deferrable_or_no_constraints(fn): """Target database must support derferable constraints.""" return _chain_decorators_on( fn, |