Skip to content

Commit b269d09

Browse files
committed
debug tox
1 parent c0acf7a commit b269d09

File tree

2 files changed

+35
-2
lines changed

2 files changed

+35
-2
lines changed

.github/workflows/build.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
- master
66
- branch-*
77
- dogfood-*
8+
- sz/fix-public-ci
89
workflow_dispatch:
910
schedule:
1011
# Nightly build at 2 AM UTC for shadow analysis
@@ -66,6 +67,38 @@ jobs:
6667
version: 2025.12.12
6768
env:
6869
MISE_ENV: test-and-analyze
70+
MISE_HTTP_TIMEOUT: 120
71+
72+
- uses: jdx/mise-action@146a28175021df8ca24f8ee1828cc2a60f980bd5 # v3.5.1
73+
with:
74+
version: 2025.12.12
75+
76+
- name: Test Tox
77+
run: |
78+
set +e
79+
uv python ls
80+
81+
echo /home/runner/.local/share/uv
82+
ls -la /home/runner/.local/share/uv/
83+
84+
echo /home/runner/.local/share/uv/python/
85+
ls -la /home/runner/.local/share/uv/python/
86+
87+
echo show linked python version
88+
ls -la /home/runner/.local/share/uv/python/cpython-3.10.19-linux-x86_64-gnu/bin/python3.10
89+
90+
echo run actualy binary
91+
/home/runner/.local/share/mise/installs/pipx-tox/4.32.0/tox/bin/tox
92+
93+
94+
echo which tox
95+
which tox
96+
97+
echo run tox
98+
tox
99+
env:
100+
MISE_VERBOSE: 1
101+
MISE_DEBUG: 1
69102

70103
- name: Remove private directory
71104
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)