From 4258c9394306db41a79761adac7916e0497f74f2 Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Thu, 24 Oct 2024 14:57:26 -0400 Subject: [PATCH 1/2] fix: Fix missing __init__.py file for repo ops project name test Signed-off-by: Francisco Javier Arceo --- sdk/python/tests/unit/sdk/python/feast/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 sdk/python/tests/unit/sdk/python/feast/__init__.py diff --git a/sdk/python/tests/unit/sdk/python/feast/__init__.py b/sdk/python/tests/unit/sdk/python/feast/__init__.py new file mode 100644 index 0000000000..e69de29bb2 From 936c9b076ab1d1494e7e9ead1b68c9af6b24f78a Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Thu, 24 Oct 2024 16:02:18 -0400 Subject: [PATCH 2/2] adjusting import Signed-off-by: Francisco Javier Arceo --- sdk/python/tests/unit/sdk/python/feast/__init__.py | 0 .../test_repo_operations_validate_feast_project_name.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 sdk/python/tests/unit/sdk/python/feast/__init__.py rename sdk/python/tests/unit/{sdk/python/feast => }/test_repo_operations_validate_feast_project_name.py (92%) diff --git a/sdk/python/tests/unit/sdk/python/feast/__init__.py b/sdk/python/tests/unit/sdk/python/feast/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/sdk/python/tests/unit/sdk/python/feast/test_repo_operations_validate_feast_project_name.py b/sdk/python/tests/unit/test_repo_operations_validate_feast_project_name.py similarity index 92% rename from sdk/python/tests/unit/sdk/python/feast/test_repo_operations_validate_feast_project_name.py rename to sdk/python/tests/unit/test_repo_operations_validate_feast_project_name.py index ba4a60ddc0..0dc4b2651b 100644 --- a/sdk/python/tests/unit/sdk/python/feast/test_repo_operations_validate_feast_project_name.py +++ b/sdk/python/tests/unit/test_repo_operations_validate_feast_project_name.py @@ -1,4 +1,4 @@ -from sdk.python.feast.repo_operations import is_valid_name +from feast.repo_operations import is_valid_name def test_is_valid_name():