From 240d9a60ccdb540543a72d9ff30a6f50d33acc5d Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 21 Oct 2019 17:32:04 -0400 Subject: Refactor dialect tests for combinations Dialect tests tend to have a lot of lists of types, SQL constructs etc, convert as many of these to @combinations as possible. This is exposing that we don't have per-combination exclusion rules set up which is making things a little bit cumbersome. Also set up a fixture that does metadata + DDL. Change-Id: Ief820e48c9202982b0b1e181b87862490cd7b0c3 --- lib/sqlalchemy/testing/plugin/plugin_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/testing/plugin/plugin_base.py') diff --git a/lib/sqlalchemy/testing/plugin/plugin_base.py b/lib/sqlalchemy/testing/plugin/plugin_base.py index a2f969a66..be1984c9e 100644 --- a/lib/sqlalchemy/testing/plugin/plugin_base.py +++ b/lib/sqlalchemy/testing/plugin/plugin_base.py @@ -727,7 +727,7 @@ class FixtureFunctions(ABC): raise NotImplementedError() @abc.abstractmethod - def fixture(self, fn): + def fixture(self, *arg, **kw): raise NotImplementedError() -- cgit v1.2.1