assert len(result.fetchall()) == 0
connection.close()
- @testing.unsupported('sqlite')
+ @testing.unsupported('sqlite', 'mssql') # TEMP: test causes mssql to hang
@testing.exclude('mysql', '<', (5, 0, 3))
def testnestedsubtransactionrollback(self):
connection = testbase.db.connect()
)
connection.close()
- @testing.unsupported('sqlite')
+ @testing.unsupported('sqlite', 'mssql') # TEMP: test causes mssql to hang
@testing.exclude('mysql', '<', (5, 0, 3))
def testnestedsubtransactioncommit(self):
connection = testbase.db.connect()
)
connection.close()
- @testing.unsupported('sqlite')
+ @testing.unsupported('sqlite', 'mssql') # TEMP: test causes mssql to hang
@testing.exclude('mysql', '<', (5, 0, 3))
def testrollbacktosubtransaction(self):
connection = testbase.db.connect()
# then see if expunge fails
session.expunge(u)
- @testing.unsupported('sqlite')
+ @testing.unsupported('sqlite', 'mssql') # TEMP: test causes mssql to hang
def test_transaction(self):
class User(object):pass
mapper(User, users)
assert conn1.execute("select count(1) from users").scalar() == 1
assert testbase.db.connect().execute("select count(1) from users").scalar() == 1
- @testing.unsupported('sqlite')
+ @testing.unsupported('sqlite', 'mssql') # TEMP: test causes mssql to hang
def test_autoflush(self):
class User(object):pass
mapper(User, users)
assert conn1.execute("select count(1) from users").scalar() == 1
assert testbase.db.connect().execute("select count(1) from users").scalar() == 1
- @testing.unsupported('sqlite')
+ @testing.unsupported('sqlite', 'mssql') # TEMP: test causes mssql to hang
def test_autoflush_unbound(self):
class User(object):pass
mapper(User, users)
metadata.drop_all()
UnitOfWorkTest.tearDownAll(self)
+ @testing.unsupported('mssql') # TEMP: test causes mssql to hang
def test_update(self):
class User(object):
pass
assert u.counter == 2
self.assert_sql_count(testbase.db, go, 1)
+ @testing.unsupported('mssql') # TEMP: test causes mssql to hang
def test_multi_update(self):
class User(object):
pass