I have the following in my circle.yml and the build log shows that redis-server was started but when I try to run my specs the server isn’t running.
machine:
services:
- elasticsearch
- redis
If I manually try to start the server later in the dependencies section I can get the server to start but I don’t think it should be working this way.
dependencies:
override:
- sudo service redis-server status || sudo service redis-server start