From: Aleš Mrázek Date: Wed, 5 Aug 2026 21:21:52 +0000 (+0200) Subject: tests: move python package tests into proper directory X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78d9737d8b60aab5d4711e3e2a314e44e06c1cd7;p=thirdparty%2Fknot-resolver.git tests: move python package tests into proper directory --- diff --git a/tests/manager/__init__.py b/tests/python/knot_resolver/__init__.py similarity index 100% rename from tests/manager/__init__.py rename to tests/python/knot_resolver/__init__.py diff --git a/tests/manager/datamodel/templates/test_cache_macros.py b/tests/python/knot_resolver/datamodel/templates/test_cache_macros.py similarity index 100% rename from tests/manager/datamodel/templates/test_cache_macros.py rename to tests/python/knot_resolver/datamodel/templates/test_cache_macros.py diff --git a/tests/manager/datamodel/templates/test_common_macros.py b/tests/python/knot_resolver/datamodel/templates/test_common_macros.py similarity index 100% rename from tests/manager/datamodel/templates/test_common_macros.py rename to tests/python/knot_resolver/datamodel/templates/test_common_macros.py diff --git a/tests/manager/datamodel/templates/test_forward_macros.py b/tests/python/knot_resolver/datamodel/templates/test_forward_macros.py similarity index 100% rename from tests/manager/datamodel/templates/test_forward_macros.py rename to tests/python/knot_resolver/datamodel/templates/test_forward_macros.py diff --git a/tests/manager/datamodel/templates/test_network_macros.py b/tests/python/knot_resolver/datamodel/templates/test_network_macros.py similarity index 100% rename from tests/manager/datamodel/templates/test_network_macros.py rename to tests/python/knot_resolver/datamodel/templates/test_network_macros.py diff --git a/tests/manager/datamodel/templates/test_policy_macros.py b/tests/python/knot_resolver/datamodel/templates/test_policy_macros.py similarity index 100% rename from tests/manager/datamodel/templates/test_policy_macros.py rename to tests/python/knot_resolver/datamodel/templates/test_policy_macros.py diff --git a/tests/manager/datamodel/templates/test_types_render.py b/tests/python/knot_resolver/datamodel/templates/test_types_render.py similarity index 100% rename from tests/manager/datamodel/templates/test_types_render.py rename to tests/python/knot_resolver/datamodel/templates/test_types_render.py diff --git a/tests/manager/datamodel/templates/test_view_macros.py b/tests/python/knot_resolver/datamodel/templates/test_view_macros.py similarity index 100% rename from tests/manager/datamodel/templates/test_view_macros.py rename to tests/python/knot_resolver/datamodel/templates/test_view_macros.py diff --git a/tests/manager/datamodel/test_config_schema.py b/tests/python/knot_resolver/datamodel/test_config_schema.py similarity index 100% rename from tests/manager/datamodel/test_config_schema.py rename to tests/python/knot_resolver/datamodel/test_config_schema.py diff --git a/tests/manager/datamodel/test_forward_schema.py b/tests/python/knot_resolver/datamodel/test_forward_schema.py similarity index 100% rename from tests/manager/datamodel/test_forward_schema.py rename to tests/python/knot_resolver/datamodel/test_forward_schema.py diff --git a/tests/manager/datamodel/test_local_data.py b/tests/python/knot_resolver/datamodel/test_local_data.py similarity index 100% rename from tests/manager/datamodel/test_local_data.py rename to tests/python/knot_resolver/datamodel/test_local_data.py diff --git a/tests/manager/datamodel/test_lua_schema.py b/tests/python/knot_resolver/datamodel/test_lua_schema.py similarity index 100% rename from tests/manager/datamodel/test_lua_schema.py rename to tests/python/knot_resolver/datamodel/test_lua_schema.py diff --git a/tests/manager/datamodel/test_management_schema.py b/tests/python/knot_resolver/datamodel/test_management_schema.py similarity index 100% rename from tests/manager/datamodel/test_management_schema.py rename to tests/python/knot_resolver/datamodel/test_management_schema.py diff --git a/tests/manager/datamodel/test_network_schema.py b/tests/python/knot_resolver/datamodel/test_network_schema.py similarity index 100% rename from tests/manager/datamodel/test_network_schema.py rename to tests/python/knot_resolver/datamodel/test_network_schema.py diff --git a/tests/manager/datamodel/types/test_base_types.py b/tests/python/knot_resolver/datamodel/types/test_base_types.py similarity index 100% rename from tests/manager/datamodel/types/test_base_types.py rename to tests/python/knot_resolver/datamodel/types/test_base_types.py diff --git a/tests/manager/datamodel/types/test_custom_types.py b/tests/python/knot_resolver/datamodel/types/test_custom_types.py similarity index 100% rename from tests/manager/datamodel/types/test_custom_types.py rename to tests/python/knot_resolver/datamodel/types/test_custom_types.py diff --git a/tests/manager/datamodel/types/test_generic_types.py b/tests/python/knot_resolver/datamodel/types/test_generic_types.py similarity index 100% rename from tests/manager/datamodel/types/test_generic_types.py rename to tests/python/knot_resolver/datamodel/types/test_generic_types.py diff --git a/tests/manager/test_config_store.py b/tests/python/knot_resolver/test_config_store.py similarity index 100% rename from tests/manager/test_config_store.py rename to tests/python/knot_resolver/test_config_store.py diff --git a/tests/manager/test_knot_resolver_manager.py b/tests/python/knot_resolver/test_knot_resolver_manager.py similarity index 100% rename from tests/manager/test_knot_resolver_manager.py rename to tests/python/knot_resolver/test_knot_resolver_manager.py diff --git a/tests/manager/utils/modeling/test_base_schema.py b/tests/python/knot_resolver/utils/modeling/test_base_schema.py similarity index 100% rename from tests/manager/utils/modeling/test_base_schema.py rename to tests/python/knot_resolver/utils/modeling/test_base_schema.py diff --git a/tests/manager/utils/modeling/test_etag.py b/tests/python/knot_resolver/utils/modeling/test_etag.py similarity index 100% rename from tests/manager/utils/modeling/test_etag.py rename to tests/python/knot_resolver/utils/modeling/test_etag.py diff --git a/tests/manager/utils/modeling/test_json_pointer.py b/tests/python/knot_resolver/utils/modeling/test_json_pointer.py similarity index 100% rename from tests/manager/utils/modeling/test_json_pointer.py rename to tests/python/knot_resolver/utils/modeling/test_json_pointer.py diff --git a/tests/manager/utils/modeling/test_parsing.py b/tests/python/knot_resolver/utils/modeling/test_parsing.py similarity index 100% rename from tests/manager/utils/modeling/test_parsing.py rename to tests/python/knot_resolver/utils/modeling/test_parsing.py diff --git a/tests/manager/utils/modeling/test_query.py b/tests/python/knot_resolver/utils/modeling/test_query.py similarity index 100% rename from tests/manager/utils/modeling/test_query.py rename to tests/python/knot_resolver/utils/modeling/test_query.py diff --git a/tests/manager/utils/modeling/test_renaming.py b/tests/python/knot_resolver/utils/modeling/test_renaming.py similarity index 100% rename from tests/manager/utils/modeling/test_renaming.py rename to tests/python/knot_resolver/utils/modeling/test_renaming.py diff --git a/tests/manager/utils/modeling/test_types.py b/tests/python/knot_resolver/utils/modeling/test_types.py similarity index 100% rename from tests/manager/utils/modeling/test_types.py rename to tests/python/knot_resolver/utils/modeling/test_types.py diff --git a/tests/manager/utils/test_functional.py b/tests/python/knot_resolver/utils/test_functional.py similarity index 100% rename from tests/manager/utils/test_functional.py rename to tests/python/knot_resolver/utils/test_functional.py