Skip to content

Commit

Permalink
Execute testcases only on integration testing
Browse files Browse the repository at this point in the history
  • Loading branch information
srebhan authored and powersj committed Oct 12, 2023
1 parent c3fcc42 commit 1237c15
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/outputs/redistimeseries/redistimeseries_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ func TestConnectAndWriteIntegration(t *testing.T) {
}

func TestCases(t *testing.T) {
if testing.Short() {
t.Skip("Skipping integration test in short mode")
}

const servicePort = "6379"
// Get all testcase directories
folders, err := os.ReadDir("testcases")
Expand Down

0 comments on commit 1237c15

Please sign in to comment.