From: Mike Bayer Date: Wed, 16 Mar 2016 20:46:42 +0000 (-0400) Subject: - exclude 0.7.9 here X-Git-Tag: rel_0_8_6~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35999f04f879371b4be49e2af26acc5c217e32da;p=thirdparty%2Fsqlalchemy%2Falembic.git - exclude 0.7.9 here --- diff --git a/tests/test_mssql.py b/tests/test_mssql.py index ce91f999..7a1a9c81 100644 --- a/tests/test_mssql.py +++ b/tests/test_mssql.py @@ -42,11 +42,13 @@ class FullEnvironmentTests(TestBase): ['COMMIT;', 'GO'] ) + @config.requirements.sqlalchemy_08 def test_batch_separator_default(self): with capture_context_buffer() as buf: command.upgrade(self.cfg, self.a, sql=True) assert "GO" in buf.getvalue() + @config.requirements.sqlalchemy_08 def test_batch_separator_custom(self): with capture_context_buffer(mssql_batch_separator="BYE") as buf: command.upgrade(self.cfg, self.a, sql=True)