在日志中说使用了 2 个测试工作人员,有没有办法将 max 配置为 1?
Run Settings
...
NumberOfTestWorkers: 2
使用像下面这样的手动脚本可以工作,但是当解决方案包含许多程序集时会变得混乱。
test_script:
- nunit3-console.exe Gu.Persist.Core.Tests\bin\Release\Gu.Persist.Core.Tests.dll --result=myresults.xml;format=AppVeyor --workers=1
- ...