Skip to content

Commit 85cd641

Browse files
committed
debug
1 parent 065ccbd commit 85cd641

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

tests/containers_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,7 @@ func TestKitchenSinkLanguageVersions(t *testing.T) {
185185
cmd := exec.Command("pulumi", "install", "--use-language-version-tools")
186186
cmd.Dir = info.Root
187187
out, err := cmd.CombinedOutput()
188-
if err != nil {
189-
t.Logf("install failed: %s: %s", err, out)
190-
}
188+
t.Logf("pulumi install: out=%s: err=%s", err, out)
191189
return err
192190
},
193191
})
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1+
import os
12
import sys
23

3-
assert sys.version_info.major == 3 and sys.version_info.minor == 9, \
4+
print("Current working directory:", os.getcwd())
5+
print("Contents:")
6+
for item in os.listdir():
7+
print(" ", item)
8+
9+
10+
assert sys.version_info.major == 3 and sys.version_info.minor == 9, (
411
f"version should be 3.9, got {sys.version_info.major}.{sys.version_info.minor}"
12+
)

0 commit comments

Comments
 (0)