Skip to content

Commit cda8f9b

Browse files
committed
tests: Don't print full tape before executing
We now continuously print the output of vhs, which prints the tape as it's being executed. Printing the full tape beforehand is just spamming the output with unhelpful data. We also save the tape as a test artifact in the CI, so we can get it from there if we need it.
1 parent be7c34e commit cda8f9b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pam/integration-tests/vhs-helpers_test.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -498,10 +498,6 @@ func (td tapeData) PrepareTape(t *testing.T, testType vhsTestType, outputPath st
498498
err = os.WriteFile(tapePath, tape, 0600)
499499
require.NoError(t, err, "Setup: write tape file")
500500

501-
if testing.Verbose() {
502-
t.Logf("Tape %q is now:\n%s", td.Name, tape)
503-
}
504-
505501
artifacts := []string{tapePath}
506502
for _, o := range td.Outputs {
507503
artifacts = append(artifacts, filepath.Join(outputPath, o))

0 commit comments

Comments
 (0)