Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
with:
python-version: "3.11"
- name: Install deps
run: pip install pytest httpx presidio-analyzer presidio-anonymizer
# 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)
Expand Down
Loading