diff options
author | Michael Trier <mtrier@gmail.com> | 2009-01-02 18:24:49 +0000 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2009-01-02 18:24:49 +0000 |
commit | a7fe20bfdada4ab189a7af749929ba82d0707a6b (patch) | |
tree | 163fa14be5032b1f57e1750e30a92503882526ed /test/orm/session.py | |
parent | 0f842d28a116b8ff8d75787c9b17ab7fe5e61e21 (diff) | |
download | sqlalchemy-a7fe20bfdada4ab189a7af749929ba82d0707a6b.tar.gz |
Added note for mssql about using snapshot isolation in order to get multiple
connection session tests to pass.
Diffstat (limited to 'test/orm/session.py')
-rw-r--r-- | test/orm/session.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/orm/session.py b/test/orm/session.py index 6114a0212..782688e13 100644 --- a/test/orm/session.py +++ b/test/orm/session.py @@ -162,7 +162,6 @@ class SessionTest(_fixtures.FixtureTest): assert len(session.query(User).filter_by(name='Johnny').all()) == 0 session.close() - @testing.crashes('mssql', 'test causes mssql to hang') @testing.requires.independent_connections @engines.close_open_connections @testing.resolve_artifact_names @@ -182,7 +181,6 @@ class SessionTest(_fixtures.FixtureTest): assert testing.db.connect().execute("select count(1) from users").scalar() == 1 sess.close() - @testing.crashes('mssql', 'test causes mssql to hang') @testing.requires.independent_connections @engines.close_open_connections @testing.resolve_artifact_names @@ -232,7 +230,6 @@ class SessionTest(_fixtures.FixtureTest): eq_(q.one(), Address(email_address='foo')) - @testing.crashes('mssql', 'test causes mssql to hang') @testing.requires.independent_connections @engines.close_open_connections @testing.resolve_artifact_names @@ -391,7 +388,6 @@ class SessionTest(_fixtures.FixtureTest): session.commit() assert session.connection().execute("select count(1) from users").scalar() == 2 - @testing.crashes('mssql', 'test causes mssql to hang') @testing.fails_on('sqlite', 'FIXME: unknown') @testing.resolve_artifact_names def test_transactions_isolated(self): |