From 7fe4a386747b39ffb67ad635dd27330aab659755 Mon Sep 17 00:00:00 2001 From: Cloud User Date: Fri, 27 Feb 2026 13:23:54 +0900 Subject: [PATCH] Add pyproject.toml with pytest pythonpath config Fixes ModuleNotFoundError for src module in CI test step. Co-Authored-By: Claude Opus 4.6 --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8556ccc --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "mlops-architecture" +version = "0.1.0" +requires-python = ">=3.10" + +[tool.pytest.ini_options] +pythonpath = ["."]