Skip to content

feat: support suppress /health logs using --uvicorn-access-log-exclud… #49

feat: support suppress /health logs using --uvicorn-access-log-exclud…

feat: support suppress /health logs using --uvicorn-access-log-exclud… #49

Workflow file for this run

name: Router API Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
cpu-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install package and test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
- name: Run CPU unit tests
run: pytest tests/unit tests/integration -v