Skip to content

Commit bf8bd18

Browse files
Debugging error that is only in pipeline.
[#158774977]
1 parent ef905df commit bf8bd18

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/python/integration/integration_suite_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,18 +147,21 @@ func AssertNoInternetTraffic(fixtureName string) {
147147
Skip("Running uncached tests")
148148
}
149149

150+
fmt.Println("### Copying bp file")
150151
bpFile := filepath.Join(bpDir, buildpackVersion+"tmp")
151152
cmd := exec.Command("cp", packagedBuildpack.File, bpFile)
152153
err := cmd.Run()
153154
Expect(err).To(BeNil())
154155
defer os.Remove(bpFile)
155156

157+
fmt.Println("### Running internet traffic test")
156158
traffic, built, err := cutlass.InternetTraffic(
157159
bpDir,
158160
filepath.Join("fixtures", fixtureName),
159161
bpFile,
160162
[]string{"LC_ALL C.UTF-8", "LANG C.UTF-8"},
161163
)
164+
fmt.Println("### Checking internet traffic results")
162165
Expect(err).To(BeNil())
163166
Expect(built).To(BeTrue())
164167
Expect(traffic).To(BeEmpty())

0 commit comments

Comments
 (0)