]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
skip_if + no_support
authorViolet Folino Gallo <48537601+galloviolet@users.noreply.github.com>
Thu, 17 Jul 2025 17:32:53 +0000 (10:32 -0700)
committerViolet Folino Gallo <48537601+galloviolet@users.noreply.github.com>
Thu, 17 Jul 2025 17:32:53 +0000 (10:32 -0700)
test/requirements.py

index 955e19ffe96c54efccd802f2f050a2f221b659ea..cf6bb81bcc1de80bf5d1f0dc539428f87597d127 100644 (file)
@@ -2132,4 +2132,8 @@ class DefaultRequirements(SuiteRequirements):
     @property
     def window_range_numeric(self):
         """Target database supports fractional RANGE values"""
-        return fails_on(["mssql"])
+        return skip_if(
+            [
+                no_support("mssql", "Doesn't support fractional RANGE"),
+            ]
+        )
\ No newline at end of file