From da8ed8bd55ed3e5f1d71d3c905be1412e83c6d35 Mon Sep 17 00:00:00 2001 From: Max Hoffman Date: Wed, 21 Apr 2021 14:15:42 -0700 Subject: [PATCH] Fix test bug Signed-off-by: Max Hoffman --- plugins/tests/sqlalchemy/test_task.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/tests/sqlalchemy/test_task.py b/plugins/tests/sqlalchemy/test_task.py index a1258d44f3e..6adeca75197 100644 --- a/plugins/tests/sqlalchemy/test_task.py +++ b/plugins/tests/sqlalchemy/test_task.py @@ -11,6 +11,14 @@ from flytekit import kwtypes, task, workflow from flytekit.types.schema import FlyteSchema +tk = SQLAlchemyTask( + "test", + query_template="select * from tracks", + task_config=SQLAlchemyConfig( + uri="sqlite://", + ), +) + @pytest.fixture(scope="function") def sql_server():