Skip to content

Commit 930057b

Browse files
committed
tmp debug print
1 parent 9c51fa8 commit 930057b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

integration/bundle/init_default_python_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package bundle_test
33
import (
44
"context"
55
"encoding/json"
6+
"fmt"
67
"os"
78
"path/filepath"
89
"strings"
@@ -51,7 +52,9 @@ func setupPython(t testutil.TestingT, ctx context.Context, directory, pythonVers
5152
testutil.RunCommand(t, "uv", "venv", ".myenv", "--python", pythonVersion, "--seed")
5253

5354
extraPath := filepath.Join(directory, ".myenv", "bin")
55+
fmt.Printf("extraPath=%s\n", extraPath)
5456
t.Setenv("PATH", extraPath+":"+os.Getenv("PATH"))
57+
fmt.Printf("ENVIRON: path=%s\n", os.Getenv("path"))
5558

5659
pythonExe, err := python.DetectExecutable(ctx)
5760
require.NoError(t, err)

0 commit comments

Comments
 (0)