Skip to content

Commit

Permalink
tmp debug win - read Scripts/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
denik committed Dec 18, 2024
1 parent 50cf8b9 commit 1e4172e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions internal/testutil/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit 1e4172e

Please sign in to comment.