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
7 changes: 5 additions & 2 deletions .github/workflows/validate-csv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,12 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest==9.0.1
python -m pip install --upgrade uv
uv venv .venv
source .venv/bin/activate
uv pip install -r requirements.txt

- name: Run CSV validation tests
run: |
source .venv/bin/activate
pytest tests/test_csv.py -v