From a27d9bd8d679836ac895e6028b95bff99e1cde6f Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Fri, 26 Apr 2024 17:57:18 -0500 Subject: [PATCH 1/5] Reorganize `test_retry_commands.py` to `tasks/test_retry.py` --- tests/unit/{test_retry_commands.py => task/test_retry.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/unit/{test_retry_commands.py => task/test_retry.py} (100%) diff --git a/tests/unit/test_retry_commands.py b/tests/unit/task/test_retry.py similarity index 100% rename from tests/unit/test_retry_commands.py rename to tests/unit/task/test_retry.py From 83fceb124a870ecd7f8166246ad344d6ce3edf5b Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Fri, 26 Apr 2024 18:01:42 -0500 Subject: [PATCH 2/5] Reorganize `test_plugin_manager.py` to `plugins/test_manager.py` --- tests/unit/{test_plugin_manager.py => plugins/test_manager.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/unit/{test_plugin_manager.py => plugins/test_manager.py} (100%) diff --git a/tests/unit/test_plugin_manager.py b/tests/unit/plugins/test_manager.py similarity index 100% rename from tests/unit/test_plugin_manager.py rename to tests/unit/plugins/test_manager.py From 42c489a1a53b03caa17ff8a0a032d19ebc821066 Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Fri, 26 Apr 2024 18:03:46 -0500 Subject: [PATCH 3/5] Reorganize `test_option_types.py` to `cli/test_option_types.py` --- tests/unit/{ => cli}/test_option_types.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/unit/{ => cli}/test_option_types.py (100%) diff --git a/tests/unit/test_option_types.py b/tests/unit/cli/test_option_types.py similarity index 100% rename from tests/unit/test_option_types.py rename to tests/unit/cli/test_option_types.py From ff8d96a1e2c5b8e174acd86f14410c8288408a25 Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Fri, 26 Apr 2024 18:07:08 -0500 Subject: [PATCH 4/5] Reorganize `test_manifest.py` to `contracts/graph/test_manifest.py` --- tests/unit/{ => contracts/graph}/test_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/unit/{ => contracts/graph}/test_manifest.py (99%) diff --git a/tests/unit/test_manifest.py b/tests/unit/contracts/graph/test_manifest.py similarity index 99% rename from tests/unit/test_manifest.py rename to tests/unit/contracts/graph/test_manifest.py index e335a09295a..6e24a10d96f 100644 --- a/tests/unit/test_manifest.py +++ b/tests/unit/contracts/graph/test_manifest.py @@ -43,7 +43,7 @@ from dbt.node_types import NodeType from dbt_semantic_interfaces.type_enums import MetricType -from .utils import ( +from tests.unit.utils import ( MockMacro, MockDocumentation, MockSource, From e30eeb779cfdab080c76b5ca3df510bf901db03a Mon Sep 17 00:00:00 2001 From: Quigley Malcolm Date: Fri, 26 Apr 2024 18:17:21 -0500 Subject: [PATCH 5/5] Reorganize `test_macro_resolver.py` to `context/test_macro_resolver.py` --- tests/unit/{ => context}/test_macro_resolver.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/unit/{ => context}/test_macro_resolver.py (100%) diff --git a/tests/unit/test_macro_resolver.py b/tests/unit/context/test_macro_resolver.py similarity index 100% rename from tests/unit/test_macro_resolver.py rename to tests/unit/context/test_macro_resolver.py