Skip to content

Commit

Permalink
CI debug Windows uv install
Browse files Browse the repository at this point in the history
  • Loading branch information
paugier committed Dec 18, 2024
1 parent d14babd commit 506253b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/debug_which_hg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import sys

from pathlib import Path
from pprint import pprint
from shutil import which

pprint(sys.path)

hg = which("hg")

print(hg)

print(Path(hg).read_text(encoding="utf-8"))
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
uv tool install mercurial --with hg-git --with hg-evolve
- name: Check Mercurial installation
run: |
python .github/debug_which_hg.py
hg version -v
hg debuginstall
- name: Setup PDM
Expand Down

0 comments on commit 506253b

Please sign in to comment.