Skip to content

Add example to CAT to retry N times to avoid Connection error #94

Add example to CAT to retry N times to avoid Connection error

Add example to CAT to retry N times to avoid Connection error #94

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
unit_tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
prune-cache: false
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run unit tests
run: uv run pytest --verbose --verbosity=10 --capture=no --tb=native --color=yes --showlocals
- name: Type check Python code
run: uv run mypy src