diff --git a/pytest.ini b/pytest.ini index 2b370ea..cd2175d 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,5 +1,5 @@ [pytest] -testpaths = src/gitea_mcp_remote/tests +testpaths = tests python_files = test_*.py python_classes = Test* python_functions = test_* diff --git a/src/gitea_mcp_remote/tests/__init__.py b/tests/__init__.py similarity index 100% rename from src/gitea_mcp_remote/tests/__init__.py rename to tests/__init__.py diff --git a/src/gitea_mcp_remote/tests/conftest.py b/tests/conftest.py similarity index 100% rename from src/gitea_mcp_remote/tests/conftest.py rename to tests/conftest.py diff --git a/src/gitea_mcp_remote/tests/test_config.py b/tests/test_config.py similarity index 100% rename from src/gitea_mcp_remote/tests/test_config.py rename to tests/test_config.py diff --git a/src/gitea_mcp_remote/tests/test_filtering.py b/tests/test_filtering.py similarity index 100% rename from src/gitea_mcp_remote/tests/test_filtering.py rename to tests/test_filtering.py diff --git a/src/gitea_mcp_remote/tests/test_middleware.py b/tests/test_middleware.py similarity index 100% rename from src/gitea_mcp_remote/tests/test_middleware.py rename to tests/test_middleware.py