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
2 changes: 1 addition & 1 deletion .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
python3 -m pip install --upgrade pip
python3 -m pip install pytest ruff
python3 -m pip install pytest ruff==0.15.22

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Pin Ruff to a published version

Ruff 0.15.22 has not been published—the available 0.15 series currently ends at 0.15.12. Consequently, every run of the test job fails at this exact-version pip install with “No matching distribution found” and never reaches the lint or test commands; pin this to an available release such as 0.15.12.

Useful? React with 👍 / 👎.

python3 -m pip check
python3 -m ruff check .
python3 -m pytest tests ops/quant-monitor/tests -q
Expand Down
Loading