You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Revert "Revert changes to CoverageWrapper.cs and ICoverageWrapper.cs"
This reverts commit 25feb24.
* Revert "Adjust arguement name to trigger the skip of coverage calculation"
This reverts commit c54c5cf.
* Revert "Add unit tests to new methods"
This reverts commit c3905a1.
* Revert "Revert refactorings caught by Geotab Analyzers"
This reverts commit cbe14cc.
* Revert "add unload modules unique specifically for use in coverlet.console"
This reverts commit 98f1f75.
* Revert "Remove possibly unneeded variables"
This reverts commit 6d2dd57.
* Revert "Unrollback change removals to integrate new changes with VSTest Integration"
This reverts commit 9d4de10.
* Revert "Refactor explicit and implicit variable usage to comply with dotnet code style rules"
This reverts commit e67ba69.
* Revert "Add minor documentation corrections and remove unneeded changes"
This reverts commit da1257e.
* Revert "Update documentation to clarify the modifications made and add some basic code clean up"
This reverts commit 0dfef6f.
* Revert "Fix problems encountered with newly added method and variables from unit testing with existing tests"
This reverts commit dcc3c29.
* Revert "Add new method to manually call the unloading of modules"
This reverts commit 88a5782.
---------
Co-authored-by: Joseph Sun <[email protected]>
Copy file name to clipboardExpand all lines: src/coverlet.console/Program.cs
+4-14
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,6 @@ static int Main(string[] args)
49
49
vardoesNotReturnAttributes=newOption<string[]>("--does-not-return-attribute","Attributes that mark methods that do not return"){Arity=ArgumentArity.ZeroOrMore,AllowMultipleArgumentsPerToken=true};
50
50
varexcludeAssembliesWithoutSources=newOption<string>("--exclude-assemblies-without-sources","Specifies behaviour of heuristic to ignore assemblies with missing source documents."){Arity=ArgumentArity.ZeroOrOne};
51
51
varsourceMappingFile=newOption<string>("--source-mapping-file","Specifies the path to a SourceRootsMappings file."){Arity=ArgumentArity.ZeroOrOne};
52
-
varunloadCoverletFromModulesOnly=newOption<bool>("---only-unload-modules","Specifies Whether or not coverlet will only unload after unit tests are finished and skip coverage calculation"){Arity=ArgumentArity.ZeroOrOne};
_mockLogger.Verify(l =>l.LogVerbose(It.Is<string>(v =>v.Equals($"Module at {Path.Combine(directory.FullName,Path.GetFileName(module))} is unloaded."))),Times.Once);
0 commit comments