Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
tier1-unit:
name: "Tier 1: Unit Tests"
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 20
steps:
- uses: actions/checkout@v4

Expand All @@ -60,14 +60,12 @@ jobs:
cache-dependency-path: viewer/package-lock.json

- name: Install Python dependencies
# The `otel` extra is required because tests/test_incident_triage_smoke.py
# imports examples/incident_triage_agent/agent.py, which imports
# opentelemetry at module load time (target.trace.backend: otel). Demo
# examples like that one ship as part of the unit-test surface, so the
# CI install set has to include the demo's optional extras even though
# core ASSERT doesn't need them.
# The base package already includes the OpenTelemetry SDK imported by
# the incident-triage smoke test. Do not combine the full `otel` extra
# with `mcp`: Phoenix currently brings an MCP v1 dependency, while the
# ASSERT MCP server intentionally requires v2.
run: |
python -m pip install -e ".[dev,otel]"
python -m pip install -e ".[dev,mcp]"

- name: Check the behavior library
# Guards two things the reference library cannot enforce by itself:
Expand Down
Loading
Loading