Skip to content

Commit 954250e

Browse files
joseph-isaacsclaude
andcommitted
fix: suppress maturin tracing in Python test CI job
Maturin's _build_wheel parses stdout to find the wheel path, but with RUST_LOG=info, maturin's pep517 tracing output goes to stdout and gets parsed as the wheel filename, causing FileNotFoundError. Adding maturin=warn to RUST_LOG suppresses the info-level log line that breaks the wheel path detection. Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 457fe6b commit 954250e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
|| 'ubuntu-latest' }}
8282
timeout-minutes: 40
8383
env:
84-
RUST_LOG: "info,uv=debug"
84+
RUST_LOG: "info,maturin=warn,uv=debug"
8585
MATURIN_PEP517_ARGS: "--profile ci"
8686
steps:
8787
- uses: runs-on/action@v2

0 commit comments

Comments
 (0)