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 ef48b37
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/debug_which_hg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import os

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

pprint(os.environ["PATH"])

hg = Path(which("hg"))
print(hg)
print(hg.read_text(encoding="utf-8"))
print(sorted(hg.parent.glob("*")))
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 ef48b37

Please sign in to comment.