I want to run some xUnit tests for AppVeyor that need an available redis instance. I did not find Redis in the AppVeyor "Service", so in the end I got a custom solution, as you can see from appveyor.yml
version: 1.0.{build} before_build: - nuget restore .\Hangfire.Redis.StackExchange.sln - START .\packages\Redis-32.2.6.12.1\tools\redis-server.exe ".\packages\Redis-32.2.6.12.1\tools\redis.conf" - '@ECHO Redis Started' build: publish_nuget: true publish_nuget_symbols: true verbosity: minimal
Unfortunately, the build process is stuck in START .\packages\Redis-32.2.6.12.1\tools\redis-server.exe ".\packages\Redis-32.2.6.12.1\tools\redis.conf"
any idea or possible workaround?
source share