Skip to content

Commit

Permalink
Fix typeshed_primer workflow
Browse files Browse the repository at this point in the history
It's been broken since we switched the workflow to use `uv`, because `uv` doesn't (by default) reinstall an editable package if it sees that it's already installed with the "right version". (I personally find this pretty surprising behaviour for editable installs. It's already tracked in astral-sh/uv#2844.)
  • Loading branch information
AlexWaygood committed Jun 8, 2024
1 parent c6bd572 commit 1905178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/typeshed_primer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: flake8 typeshed using PR branch
run: |
cd new_plugin
uv pip install -e . --system
uv pip install -e . --system --reinstall
cd ../typeshed
flake8 --exit-zero --color never --output-file ../new_errors.txt
- name: Get diff between the two runs
Expand Down

0 comments on commit 1905178

Please sign in to comment.