Skip to content

Add open agentic models (DeepSeek V4 Pro + GLM 5.2) to the catalog #10

Add open agentic models (DeepSeek V4 Pro + GLM 5.2) to the catalog

Add open agentic models (DeepSeek V4 Pro + GLM 5.2) to the catalog #10

Workflow file for this run

name: tests
on:
pull_request:
push:
branches: [main]
jobs:
scrubber-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install deps
# click + typer explicit: spacy's `download` CLI is typer/click-based but presidio's
# dependency resolution doesn't always pull them, so `spacy download` ModuleNotFound's.
run: pip install pytest httpx spacy click typer presidio-analyzer presidio-anonymizer
- name: Download spaCy model
run: python -m spacy download en_core_web_md
- name: Run scrubber tests (incl. golden leak canary)
run: pytest tests/ -q