Skip to content

Commit

Permalink
Skip suite teardown for IBM (#5346)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdmanv authored and Ilya Kislenko committed Apr 5, 2019
1 parent c85d497 commit 3f6ffd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/blockstorage/ibm/ibmcloud_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ func (s *TestIBMCloudBlock) SetUpSuite(c *C) {
}

func (s TestIBMCloudBlock) TearDownSuite(c *C) {
c.Skip("IBM tests are too flaky to run in CI")
// Check whether or not the test volume was initialized
if _, ok := os.LookupEnv(IBMApiKeyEnv); !ok {
c.Skip(fmt.Sprintf("Skipping TearDown"))
c.Skip("Skipping TearDown")
}
c.Assert(s.testVol, NotNil)
bsVol, err := s.provider.VolumeGet(context.Background(), s.testVol.ID, "")
Expand Down

0 comments on commit 3f6ffd2

Please sign in to comment.