]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- add missing __backend__ directives for SQL server
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 8 Feb 2016 19:20:12 +0000 (14:20 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 8 Feb 2016 19:20:12 +0000 (14:20 -0500)
test/dialect/mssql/test_query.py
test/dialect/mssql/test_reflection.py

index 32edfd7eba659c30eb3347e57cc27cc3bc564152..81fa2fb1e8186f84ab7755f7373ff5ebdd575bdd 100644 (file)
@@ -134,6 +134,7 @@ class LegacySchemaAliasingTest(fixtures.TestBase, AssertsCompiledSQL):
 class IdentityInsertTest(fixtures.TestBase, AssertsCompiledSQL):
     __only_on__ = 'mssql'
     __dialect__ = mssql.MSDialect()
+    __backend__ = True
 
     @classmethod
     def setup_class(cls):
@@ -187,6 +188,7 @@ class IdentityInsertTest(fixtures.TestBase, AssertsCompiledSQL):
 class QueryUnicodeTest(fixtures.TestBase):
 
     __only_on__ = 'mssql'
+    __backend__ = True
 
     def test_convert_unicode(self):
         meta = MetaData(testing.db)
@@ -214,6 +216,7 @@ class QueryUnicodeTest(fixtures.TestBase):
 
 class QueryTest(testing.AssertsExecutionResults, fixtures.TestBase):
     __only_on__ = 'mssql'
+    __backend__ = True
 
     def test_fetchid_trigger(self):
         """
@@ -484,6 +487,7 @@ class MatchTest(fixtures.TestBase, AssertsCompiledSQL):
 
     __only_on__ = 'mssql'
     __skip_if__ = full_text_search_missing,
+    __backend__ = True
 
     @classmethod
     def setup_class(cls):
index e016a6e41c8824976fc6e91c55a5f0c24c747d01..ccde93ba1d8db4af2d64cc633a0c178ca7de760d 100644 (file)
@@ -12,6 +12,7 @@ from sqlalchemy import util
 
 class ReflectionTest(fixtures.TestBase, ComparesTables):
     __only_on__ = 'mssql'
+    __backend__ = True
 
     @testing.provide_metadata
     def test_basic_reflection(self):
@@ -229,6 +230,7 @@ class InfoCoerceUnicodeTest(fixtures.TestBase, AssertsCompiledSQL):
 
 class ReflectHugeViewTest(fixtures.TestBase):
     __only_on__ = 'mssql'
+    __backend__ = True
 
     # crashes on freetds 0.91, not worth it
     __skip_if__ = (