From: Mike Bayer Date: Fri, 29 Sep 2017 17:22:07 +0000 (-0400) Subject: use fails_if for check_constraint_reflection X-Git-Tag: rel_1_2_0~68 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ff05dae071fcf3213024a4004511a9bd049d1e6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git use fails_if for check_constraint_reflection Change-Id: Id66c563027561a4b3baf853093b0b408d032c173 --- diff --git a/test/requirements.py b/test/requirements.py index fe39ec8a1f..e01c686aee 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -386,9 +386,9 @@ class DefaultRequirements(SuiteRequirements): @property def check_constraint_reflection(self): - return only_if( - ["postgresql", "sqlite", "oracle", - self._mariadb_102] + return fails_on_everything_except( + "postgresql", "sqlite", "oracle", + self._mariadb_102 ) @property