You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The redisServerBin and redisServerConf are no longer present in main_test.go, but they are mentioned in the README.
Run the test
go-redis will start a redis-server and run the test cases.
The paths of redis-server bin file and redis config file are defined in main_test.go:
var (
redisServerBin, _=filepath.Abs(filepath.Join("testdata", "redis", "src", "redis-server")) // no longer present in main_test.goredisServerConf, _=filepath.Abs(filepath.Join("testdata", "redis", "redis.conf")) // no longer present in main_test.go
)