summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/test/requires.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2009-09-11 08:10:32 +0000
committerPhilip Jenvey <pjenvey@underboss.org>2009-09-11 08:10:32 +0000
commitf385260987da45ce140edba986b1ac0c2a6a9e35 (patch)
tree087e9236e9d1bfa46563be149a06c8fffeeaf408 /lib/sqlalchemy/test/requires.py
parent0c26713326f8e9367e58f9c693455b055a1aef8c (diff)
downloadsqlalchemy-f385260987da45ce140edba986b1ac0c2a6a9e35.tar.gz
mssql+zxjdbc support
original patch from Victor Ng fixes #1505
Diffstat (limited to 'lib/sqlalchemy/test/requires.py')
-rw-r--r--lib/sqlalchemy/test/requires.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sqlalchemy/test/requires.py b/lib/sqlalchemy/test/requires.py
index f3f4ec191..be6ae9594 100644
--- a/lib/sqlalchemy/test/requires.py
+++ b/lib/sqlalchemy/test/requires.py
@@ -70,7 +70,9 @@ def independent_connections(fn):
# ODBC as well.
return _chain_decorators_on(
fn,
- no_support('sqlite', 'no driver support')
+ no_support('sqlite', 'no driver support'),
+ exclude('mssql', '<', (9, 0, 0),
+ 'SQL Server 2005+ is required for independent connections'),
)
def row_triggers(fn):