]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
skip specific dialects
authorViolet Folino Gallo <48537601+galloviolet@users.noreply.github.com>
Thu, 17 Jul 2025 19:20:49 +0000 (12:20 -0700)
committerViolet Folino Gallo <48537601+galloviolet@users.noreply.github.com>
Thu, 17 Jul 2025 19:20:49 +0000 (12:20 -0700)
test/requirements.py

index cf6bb81bcc1de80bf5d1f0dc539428f87597d127..1f8f65493be25365173dc0bc085dced7208ca6b9 100644 (file)
@@ -2134,6 +2134,8 @@ class DefaultRequirements(SuiteRequirements):
         """Target database supports fractional RANGE values"""
         return skip_if(
             [
-                no_support("mssql", "Doesn't support fractional RANGE"),
+                no_support("mssql+aioodbc", "Doesn't support fractional RANGE"),
+                no_support("mssql+pymssql", "Doesn't support fractional RANGE"),
+                no_support("mssql+pyodbc", "Doesn't support fractional RANGE"),
             ]
         )
\ No newline at end of file