From 80ba4db431cbd804142cd4d3eaf39195c5e21f92 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Jun 2026 10:53:34 +0000 Subject: [PATCH 1/2] Initial plan From a0de83bdbce733668db5eda9a6cc1f0f6dd2012f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Jun 2026 10:56:28 +0000 Subject: [PATCH 2/2] fix: add pythonpath to pytest config to fix ModuleNotFoundError for src --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 3d62a0e..2ceb989 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,6 +47,7 @@ target-version = "py39" [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] +pythonpath = ["."] markers = [ "integration: marks tests that call real Azure APIs (deselect with '-m \"not integration\"')", "live: marks tests requiring live Foundry endpoint (deselect with '-m \"not live\"')",