We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef905df commit bf8bd18Copy full SHA for bf8bd18
1 file changed
src/python/integration/integration_suite_test.go
@@ -147,18 +147,21 @@ func AssertNoInternetTraffic(fixtureName string) {
147
Skip("Running uncached tests")
148
}
149
150
+ fmt.Println("### Copying bp file")
151
bpFile := filepath.Join(bpDir, buildpackVersion+"tmp")
152
cmd := exec.Command("cp", packagedBuildpack.File, bpFile)
153
err := cmd.Run()
154
Expect(err).To(BeNil())
155
defer os.Remove(bpFile)
156
157
+ fmt.Println("### Running internet traffic test")
158
traffic, built, err := cutlass.InternetTraffic(
159
bpDir,
160
filepath.Join("fixtures", fixtureName),
161
bpFile,
162
[]string{"LC_ALL C.UTF-8", "LANG C.UTF-8"},
163
)
164
+ fmt.Println("### Checking internet traffic results")
165
166
Expect(built).To(BeTrue())
167
Expect(traffic).To(BeEmpty())
0 commit comments