From be9a0e5c853198660c0949d86453618e229656a4 Mon Sep 17 00:00:00 2001 From: JensPederM Date: Sat, 14 Sep 2024 14:14:47 +0200 Subject: [PATCH] remove main Signed-off-by: JensPederM --- tests/test_units.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tests/test_units.py b/tests/test_units.py index 9bb0476..cf0b11c 100644 --- a/tests/test_units.py +++ b/tests/test_units.py @@ -335,16 +335,3 @@ def test_is_null_or_empty(): assert not _is_null_or_empty("a"), "Failed to check str" assert not _is_null_or_empty({1: 1}), "Failed to check dict" assert not _is_null_or_empty([1]), "Failed to check list" - - -if __name__ == "__main__": - from rich import print - - from kedro_databricks.bundle import _create_workflow - - class Meta: - project_path = "/path/to/project" - package_name = "fake_project" - project_name = "fake-project" - - print(_create_workflow("workflow1", pipeline, Meta(), "fake_env"))