diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-03-15 17:47:34 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-03-15 17:47:34 -0400 |
| commit | 4d147c3b169a3d57c0528b0a2633a30866fcb2f9 (patch) | |
| tree | 057254445a62c920ac23482f72a32caa6269ea91 /test/requirements.py | |
| parent | 31f96c27a5fea302358ba580313a2f742c12b83d (diff) | |
| download | sqlalchemy-4d147c3b169a3d57c0528b0a2633a30866fcb2f9.tar.gz | |
- Added basic isolation level support to the SQL Server dialects
via :paramref:`.create_engine.isolation_level` and
:paramref:`.Connection.execution_options.isolation_level`
parameters. fixes #3534
Diffstat (limited to 'test/requirements.py')
| -rw-r--r-- | test/requirements.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requirements.py b/test/requirements.py index abc8ad5c2..4ef5d62a3 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -225,7 +225,7 @@ class DefaultRequirements(SuiteRequirements): @property def isolation_level(self): return only_on( - ('postgresql', 'sqlite', 'mysql'), + ('postgresql', 'sqlite', 'mysql', 'mssql'), "DBAPI has no isolation level support" ) + fails_on('postgresql+pypostgresql', 'pypostgresql bombs on multiple isolation level calls') |
