We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9cc17e commit de68723Copy full SHA for de68723
tests/observability/extensions/openai/integration/conftest.py
@@ -49,11 +49,12 @@ def azure_openai_config() -> dict[str, Any]:
49
50
@pytest.fixture(scope="session")
51
def agent365_config() -> dict[str, Any]:
52
- """Agent365 configuration for integration tests."""
+ """Microsoft Agent 365 configuration for integration tests."""
53
tenant_id = os.getenv("AGENT365_TEST_TENANT_ID", "4d44f041-f91e-4d00-b107-61e47b26f5a8")
54
agent_id = os.getenv("AGENT365_TEST_AGENT_ID", "3bccd52b-daaa-4b11-af40-47443852137c")
55
56
if not tenant_id:
57
pytest.skip("Integration tests require AGENT365_TEST_TENANT_ID")
58
59
return {"tenant_id": tenant_id, "agent_id": agent_id}
60
+
0 commit comments