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
@@ -169,7 +169,7 @@ def worker_process(
pytest.fail("Test class must have @pytest.mark.sample() marker")
sample_name: str = cast(str, sample_marker.args[0]) # type: ignore[union-attr]
sample_path: Path = Path(__file__).parents[4] / "samples" / "getting_started" / "durabletask" / sample_name
sample_path: Path = Path(__file__).parents[4] / "samples" / "durable" / "console_apps" / sample_name
worker_file: Path = sample_path / "worker.py"
if not worker_file.exists():