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 @@ -43,7 +43,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 pytest-cov ruff
python -m pip install --no-deps -e external/QuantPlatformKit

- name: Run Ruff
Expand All @@ -54,4 +54,4 @@ jobs:
- name: Run unit tests
run: |
set -euo pipefail
python -m unittest discover -s tests -v
python -m pytest -q tests --cov --cov-report=term --cov-report=xml
Loading