Skip to content

Commit

Permalink
add skip log line
Browse files Browse the repository at this point in the history
Signed-off-by: Grant Griffiths <ggriffiths@purestorage.com>
  • Loading branch information
Grant Griffiths committed Jul 27, 2023
1 parent 77363e0 commit c08d0a8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/integration_test/basic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,11 @@ var testStorageClusterBasicCases = []types.TestCase{
}),
TestFunc: BasicGrafanaRegression,
ShouldSkip: func(tc *types.TestCase) bool {
return ci_utils.PxOperatorVersion.LessThan(ci_utils.PxOperatorVer23_8)
skip := ci_utils.PxOperatorVersion.LessThan(ci_utils.PxOperatorVer23_8)
if skip {
logrus.Info("Skipping BasicGrafanaRegression since operator version is less than 23.8.x")
}
return skip
},
},
{
Expand Down

0 comments on commit c08d0a8

Please sign in to comment.