Difference test case result between dotnet test and coverlet with dotnet test #1463
|
Hi, I have a test dll and I can use dotnet test to execute the test cases without any problem Command => dotnet test C:/projects/projectA/test/unit.tests.csproj --no-build -c Release However, if I run coverlet with the dotnet test, some test cases were failed Failed unit.tests.TestNamespacesAreConsistent.Test_xxxxxx_NameSpace [445 ms] Any hint on the above difference between dotnet test and coverlet execution with dotnet test? |
Replies: 1 comment
|
Please use the |
Please use the
dotnet test --diaglogging option. Maybe you find a assembly version conflict which will break the test (see Known Issues for more details).