Skip to content

Merge pull request #12 from Sahandfer/feature/patientZero #8

Merge pull request #12 from Sahandfer/feature/patientZero

Merge pull request #12 from Sahandfer/feature/patientZero #8

Workflow file for this run

name: Client Smoke Tests
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'patienthub/clients/**'
- 'patienthub/configs/**'
- 'data/prompts/**'
- 'patienthub/tests/clients.py'
pull_request:
branches:
- master
paths:
- 'patienthub/clients/**'
- 'patienthub/configs/**'
- 'data/prompts/**'
- 'patienthub/tests/clients.py'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
uv venv --python 3.12 --clear
uv pip install -e . --no-deps
uv pip install pydantic omegaconf hydra-core litellm instructor jinja2 python-dotenv rich pytest
- name: Run client smoke tests
run: uv run pytest patienthub/tests/clients.py -v