Add reasoning/thinking tokens support to traces #1173
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests for Docs | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- 'docs/**' | |
- '.github/workflows/**' | |
- 'pyproject.toml' | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- 'docs/**' | |
- '.github/workflows/**' | |
- 'pyproject.toml' | |
workflow_dispatch: | |
jobs: | |
run-docs-tests: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v5 | |
- name: Install the latest version of uv and set the python version to 3.13 | |
uses: astral-sh/setup-uv@v6 | |
with: | |
python-version: 3.13 | |
activate-environment: true | |
- name: Install | |
run: | | |
uv sync --group tests --extra all --extra a2a | |
uv pip install opentelemetry-exporter-otlp | |
- name: Run Documentation tests | |
run: pytest tests/docs -v --cov --cov-report=xml | |
- name: Upload coverage reports to Codecov | |
if: always() | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |