From: Violet Folino Gallo <48537601+galloviolet@users.noreply.github.com> Date: Thu, 17 Jul 2025 17:32:53 +0000 (-0700) Subject: skip_if + no_support X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bc7261456b3c01042578681980483080615fa0d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git skip_if + no_support --- diff --git a/test/requirements.py b/test/requirements.py index 955e19ffe9..cf6bb81bcc 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -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