diff --git a/internal/testutil/env.go b/internal/testutil/env.go index 6584b3a43d..5ab901135d 100644 --- a/internal/testutil/env.go +++ b/internal/testutil/env.go @@ -83,5 +83,14 @@ func InsertVirtualenvInPath(t TestingT, venvPath string) { venvPath = filepath.Join(venvPath, "bin") } + entries, err := os.ReadDir(venvPath) + if err != nil { + t.Error("Missing venvPath: %s", venvPath) + } else { + for _, e := range entries { + t.Log("Reading %s: %s\n", venvPath, e.Name()) + } + } + InsertPathEntry(t, venvPath) }