Update integration test paths to match new durable directory structure

- Updated durabletask integration tests to use samples/durable/console_apps
- Updated azurefunctions integration tests to use samples/durable/azure_functions
- Fixed paths in conftest.py, test_03_dt_single_agent_streaming.py, and testutils.py

Co-authored-by: larohra <41490930+larohra@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-30 22:36:51 +00:00
Unverified
parent 9843355c83
commit 2a5186c8b4
3 changed files with 3 additions and 3 deletions
@@ -234,7 +234,7 @@ def get_sample_path_from_marker(request) -> tuple[Path | None, str | None]:
sample_name = marker.args[0]
repo_root = _resolve_repo_root()
sample_path = repo_root / "samples" / "getting_started" / "azure_functions" / sample_name
sample_path = repo_root / "samples" / "durable" / "azure_functions" / sample_name
if not sample_path.exists():
return None, f"Sample directory does not exist: {sample_path}"