Uh oh!
There was an error while loading. Please reload this page.
Update to coverlet 2.6.0 - #2843
Conversation
Codecov Report
@@ Coverage Diff @@## master #2843 +/- ##
==========================================
+ Coverage 71.81% 72.17% +0.35%
==========================================
Files 812 796 -16 Lines 142659 141949 -710 Branches 16090 16042 -48 ==========================================
Hits 102450 102450 + Misses 35826 35117 -709 + Partials 4383 4382 -1
|
e7a3e4b to
953ae39CompareUh oh!
There was an error while loading. Please reload this page.
If I pick a code coverage run arbitrarily, I see #2808 finished in 38m 13s. Yours finished in 23m 36s. That's a very positive perf difference! |
sharwell
commented
Mar 5, 2019
@TomFinley it's a substantial improvement in time, but some of the data seems to be missing. I'm still investigating. |
c032056 to
e9758e2Compare| <Message Importance="high" Text=""$(_ReportGeneratorPath)" -reports:$(BaseOutputPath)$(PlatformConfig)\coverage\*.coverage -targetdir:$(BaseOutputPath)$(PlatformConfig)\coverage -reporttypes:Cobertura" /> | ||
| <Exec Command=""$(_ReportGeneratorPath)" -reports:$(BaseOutputPath)$(PlatformConfig)\coverage\*.coverage -targetdir:$(BaseOutputPath)$(PlatformConfig)\coverage -reporttypes:Cobertura" /> | ||
| <Message Importance="high" Text=""$(_ReportGeneratorPath)" -reports:$(BaseOutputPath)$(PlatformConfig)\coverage\*.coverage -targetdir:$(BaseOutputPath)$(PlatformConfig)\coverage -filefilters:+https* -reporttypes:Cobertura" /> | ||
| <Exec Command=""$(_ReportGeneratorPath)" -reports:$(BaseOutputPath)$(PlatformConfig)\coverage\*.coverage -targetdir:$(BaseOutputPath)$(PlatformConfig)\coverage -filefilters:+https* -reporttypes:Cobertura" /> |
There was a problem hiding this comment.
📝 This is an attempt to address a change in the way numbers were appearing in the new reports. For some reason, the file submitted to codecov had two copies of each source file. The first copy referenced the file using the build machine path, and the second referenced the file using a Source Link path. Prior reports submitted to codecov appeared to only contain the latter, so I'm attempting to use a filter to address the problem.
<classname="Microsoft.ML.StaticPipe.LdaFitResult"filename="D:\a\1\s\src\Microsoft.ML.StaticPipe\LdaStaticExtensions.cs"line-rate="0"branch-rate="1"complexity="NaN">
<methods>
<methodname=".ctor"signature="(Microsoft.ML.Transforms.Text.LatentDirichletAllocationTransformer/LdaSummary)"line-rate="0"branch-rate="1">
<linenumber="24"hits="0"branch="false" />
<linenumber="25"hits="0"branch="false" />
<linenumber="26"hits="0"branch="false" />
<linenumber="27"hits="0"branch="false" />
</method>
</methods>
<lines>
<linenumber="24"hits="0"branch="false" />
<linenumber="25"hits="0"branch="false" />
<linenumber="26"hits="0"branch="false" />
<linenumber="27"hits="0"branch="false" />
</lines>
</class>
<classname="Microsoft.ML.StaticPipe.LdaFitResult"filename="https://raw.githubusercontent.com/dotnet/machinelearning/d495bb4c7a58c459e753b9de3d0895c188468b58/src/Microsoft.ML.StaticPipe/LdaStaticExtensions.cs"line-rate="1"branch-rate="1"complexity="NaN">
<methods>
<methodname=".ctor"signature="(Microsoft.ML.Transforms.Text.LatentDirichletAllocationTransformer/LdaSummary)"line-rate="1"branch-rate="1">
<linenumber="24"hits="1"branch="false" />
<linenumber="25"hits="1"branch="false" />
<linenumber="26"hits="1"branch="false" />
<linenumber="27"hits="1"branch="false" />
</method>
</methods>
<lines>
<linenumber="24"hits="1"branch="false" />
<linenumber="25"hits="1"branch="false" />
<linenumber="26"hits="1"branch="false" />
<linenumber="27"hits="1"branch="false" />
</lines>
</class>This should be ready for review. The changes to coverage were primarily the following:
The other coverage changes appear to be normal non-determinism in the coverage runs. |
sharwell
commented
Mar 10, 2019
For some reason the button to move this from a draft pull request to a normal pull request is missing here... |
TomFinley
commented
Mar 10, 2019
Interesting. Maybe it's one of those things that somehow needs write access? But that doesn't make sense. Anyway, I pushed the button... |
Uh oh!
There was an error while loading. Please reload this page.
codemzs
commented
Mar 12, 2019
Thanks, @sharwell ! |
* include coverlet.msbuild 2.5.1 * add targets and coverage group * mock dotnet/machinelearning#2843 * Hook coverlet up to the 'RunTests' target * Upload data to codecov.io * Add code coverage badge to the README * Add clarifying comments for code coverage configuration * Move coverage upload after pick/sign/publish
No description provided.