Skip to content

Commit

Permalink
Add short flag
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbrzzl committed Aug 2, 2023
1 parent 16b7d29 commit 348a6b1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions redis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ type RedisTestSuite struct {
}

func TestRedisTestSuite(t *testing.T) {
if testing.Short() {
t.Skip("Skipping tests of using docker")
}

redisPool, redisDocker, redisStore, err := getRedisDocker()
if err != nil {
log.Fatalf("Get redis store error: %s", err)
Expand Down

0 comments on commit 348a6b1

Please sign in to comment.