我想在需要可用的 redis 实例的 AppVeyor 上运行一些 xUnit 测试。我没有在 AppVeyor 的“服务”中找到 Redis,所以我最终得到了一个自定义解决方案,正如您从 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
不幸的是,构建过程停留在START .\packages\Redis-32.2.6.12.1\tools\redis-server.exe ".\packages\Redis-32.2.6.12.1\tools\redis.conf"
任何想法或可能的解决方法?