Skip to content

Commit 0f63c4a

Browse files
mkochergit
authored andcommitted
remove --all from cleanup
The pipeline already runs `bosh clean-up --all` in the teardown step. Removing this allos BPM to be uploaded once. It also makes the tests faster as the releases don't have to be recompiled for each suite.
1 parent a19ada8 commit 0f63c4a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • acceptance-tests/testhelpers

acceptance-tests/testhelpers/bosh.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func (b *BOSH) Teardown() {
3535
Expect(err).ToNot(HaveOccurred())
3636
Expect(exitStatus).To(Equal(0), fmt.Sprintf("stdOut: %s \n stdErr: %s", stdOut, stdErr))
3737

38-
stdOut, stdErr, exitStatus, err = b.Run("clean-up", "--all")
38+
stdOut, stdErr, exitStatus, err = b.Run("clean-up")
3939
Expect(err).ToNot(HaveOccurred())
4040
Expect(exitStatus).To(Equal(0), fmt.Sprintf("stdOut: %s \n stdErr: %s", stdOut, stdErr))
4141
}

0 commit comments

Comments
 (0)