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: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
set -euo pipefail
python -m pip install --upgrade pip
python -m pip install -e . numpy pandas ruff
python -m pip install -e . numpy pandas pytest ruff

- name: Run Ruff
run: |
Expand All @@ -31,4 +31,4 @@ jobs:
- name: Run unit tests
run: |
set -euo pipefail
PYTHONPATH=src python -m unittest discover -s tests -v
PYTHONPATH=src python -m pytest -q tests