summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2017-08-29 14:31:43 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2017-08-29 14:32:35 -0400
commit56950a78db62d880a2f2c240c8c5873af86310c2 (patch)
treef04e099dada18965e03c59ad6151cc144a392823 /test
parentec4f567f31856a92bd91144112cd29df356a8ca8 (diff)
downloadsqlalchemy-56950a78db62d880a2f2c240c8c5873af86310c2.tar.gz
Implement AUTOCOMMIT for pyodbc, pymssql
In prep for CI coverage for SQL Server, allow AUTOCOMMIT isolation level to work Change-Id: I850b977e75f53385986f2c181be4e4412dd3b3f4
Diffstat (limited to 'test')
-rw-r--r--test/requirements.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requirements.py b/test/requirements.py
index 4fcf541e3..4f01eac9b 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -268,7 +268,7 @@ class DefaultRequirements(SuiteRequirements):
def autocommit(self):
"""target dialect supports 'AUTOCOMMIT' as an isolation_level"""
return only_on(
- ('postgresql', 'mysql'),
+ ('postgresql', 'mysql', 'mssql+pyodbc', 'mssql+pymssql'),
"dialect does not support AUTOCOMMIT isolation mode")
@property