Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Linux CI 盒子里运行 Coverlet。现在,在我运行下面的命令之后,无论是否满足阈值,当我检查 $? 值,该命令始终返回 0。
dotnet test -p:CollectCoverage=true -p:Threshold=95
如果所有测试都通过,并且单元测试覆盖率高于阈值,我需要 Coverlet 返回 0,如果任何测试失败或未达到阈值,则返回 1。
有没有人以前见过这个问题,或者知道如何解决它?谢谢!