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"
アイデアや可能な回避策はありますか?