Skip to content

Commit 31b4132

Browse files
committed
stembuild: add more logging in tests
1 parent b8389c7 commit 31b4132

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

stembuild/integration/construct/construct_suite_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,10 @@ func enableWinRM() {
246246
powershellModuleRemotePath,
247247
}
248248

249+
By(fmt.Sprintf("Starting upload of '%s' to '%s': '%s'", powershellModuleLocalPath, powershellModuleRemotePath, strings.Join(uploadCommand, " ")))
249250
uploadExitCode := cli.Run(uploadCommand)
250251
Expect(uploadExitCode).To(Equal(0), fmt.Sprintf("error uploading %s to %s", powershellModuleLocalPath, powershellModuleRemotePath))
251-
By(fmt.Sprintf("'%s' was uploaded to '%s'", powershellModuleLocalPath, powershellModuleRemotePath))
252+
By(fmt.Sprintf("Finished upload of '%s' to '%s': '%s'", powershellModuleLocalPath, powershellModuleRemotePath, strings.Join(uploadCommand, " ")))
252253
}
253254

254255
enableCommand := []string{

0 commit comments

Comments
 (0)