hibiken / asynq

Simple, reliable, and efficient distributed task queue in Go
MIT License
10.03k stars 716 forks source link

Update tests to use the configured Redis address #945

Closed pior closed 3 weeks ago

pior commented 3 weeks ago

Context

I'm running tests locally with go test -redis_addr ${REDIS_HOST}:${REDIS_PORT} -v -race -cover ./... because my machine is configured with isolated Redis instances per project.

Most tests are attempting to connect to the Redis address specified by flags, but not all

Changes