Skip to content

Commit b532744

Browse files
committed
debug tox
1 parent ef4a688 commit b532744

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

.github/workflows/build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- master
66
- branch-*
77
- dogfood-*
8+
- sz/test-analyze-action
89
workflow_dispatch:
910
schedule:
1011
# Nightly build at 2 AM UTC for shadow analysis
@@ -51,6 +52,39 @@ jobs:
5152
- uses: jdx/mise-action@146a28175021df8ca24f8ee1828cc2a60f980bd5 # v3.5.1
5253
with:
5354
version: 2025.12.12
55+
env:
56+
MISE_HTTP_TIMEOUT: 120
57+
58+
- uses: jdx/mise-action@146a28175021df8ca24f8ee1828cc2a60f980bd5 # v3.5.1
59+
with:
60+
version: 2025.12.12
61+
62+
- name: Test Tox
63+
run: |
64+
set +e
65+
uv python ls
66+
67+
echo /home/runner/.local/share/uv
68+
ls -la /home/runner/.local/share/uv/
69+
70+
echo /home/runner/.local/share/uv/python/
71+
ls -la /home/runner/.local/share/uv/python/
72+
73+
echo show linked python version
74+
ls -la /home/runner/.local/share/uv/python/cpython-3.10.19-linux-x86_64-gnu/bin/python3.10
75+
76+
echo run actualy binary
77+
/home/runner/.local/share/mise/installs/pipx-tox/4.32.0/tox/bin/tox
78+
79+
80+
echo which tox
81+
which tox
82+
83+
echo run tox
84+
tox
85+
env:
86+
MISE_VERBOSE: 1
87+
MISE_DEBUG: 1
5488

5589
- name: Remove private directory
5690
run: rm -rf private

mise.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tools]
22
java = "21.0"
33
maven = "3.9"
4-
python = "3.9"
4+
python = "3.10"
55
uv = "latest" # required for pipx backend
6-
"pipx:tox" = { version = "latest", uvx = "true" }
6+
"pipx:tox" = { version = "latest", uvx = "true", uvx_args = "--managed-python" }

0 commit comments

Comments
 (0)