This is co-released with
xunit.analyzers
version 1.2.0-pre.9
and
xunit.runner.visualstudio
version 2.5.0-pre.15
.
ExcludeFromCodeCoverageAttribute
to all the xUnit.net assemblies.
This should resolve issues with dotnet test ---collect "Code Coverage"
(the new
cross-platform code coverage system) incorrectly showing coverage for xUnit.net itself.
xunit/xunit#2682
TEAMCITY_PROCESS_FLOW_ID
.
xunit/xunit#2385
xunit.console.exe
and
xunit.console.x86.exe
. New MSBuild parameters are available (when referencing
the xunit.runner.console
NuGet package) which point to the console runner
executable on disk:
XunitConsole48Path
XunitConsole48PathX86
XunitConsole481Path
XunitConsole481PathX86
FactAttribute
-derived class
could cause tests to become inappropriately ignored due to an exception throw during discovery.
Now, when a test method is decorated with a misbehaving attribute, the test will still be
discovered, and when run it will fail with information about the failure. Unaffected tests
in the same class will no longer be affected by this failure.
xunit/xunit#2719