diff --git a/src/fk_graph/plotly_functions.py b/src/fk_graph/plotly_functions.py index 853edb7..60ea8ae 100644 --- a/src/fk_graph/plotly_functions.py +++ b/src/fk_graph/plotly_functions.py @@ -299,7 +299,7 @@ def _get_test_graph() -> nx.Graph: from fk_graph.data_setup import setup_data from fk_graph.graph import get_graph from sqlalchemy import create_engine - engine = create_engine("sqlite+pysqlite:///:memory:", echo=False) + engine = create_engine("sqlite+pysqlite:///:memory:") setup_data(engine) G = get_graph(engine, 'table_a', 1) return G diff --git a/tests/test_data_setup.py b/tests/test_data_setup.py index 3b8ba6e..06ef000 100644 --- a/tests/test_data_setup.py +++ b/tests/test_data_setup.py @@ -9,7 +9,7 @@ class DataSetupTests(TestCase): def setUp(self): - self.engine = create_engine("sqlite+pysqlite:///:memory:", echo=True) + self.engine = create_engine("sqlite+pysqlite:///:memory:") def test_runs(self): setup_data(self.engine) diff --git a/tests/test_intergration.py b/tests/test_intergration.py index 3dfc705..b10156e 100644 --- a/tests/test_intergration.py +++ b/tests/test_intergration.py @@ -6,7 +6,7 @@ from fk_graph.data_setup import setup_data from fk_graph.plot_graph import plot -engine = create_engine("sqlite+pysqlite:///:memory:", echo=True) +engine = create_engine("sqlite+pysqlite:///:memory:") class DataSetupTests(TestCase): def test_integration(self):