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? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Please use the |
Beta Was this translation helpful? Give feedback.
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).