Skip to content

Add warning support to ReportCollector and renderer #7

Add warning support to ReportCollector and renderer

Add warning support to ReportCollector and renderer #7

Workflow file for this run

name: Test
on:
pull_request:
paths:
- 'pytest_llm_report/*'
- 'tests/*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --all-groups --dev
- name: Run Tests
run: uv run pytest