Update test-upload TargetFramework#6489
Conversation
These should have been changed when we updated past .NET Core 2.1 but were missed.
|
I remember mulling this over. I think we can remove these steps entirely, artifact upload is already handled by: - task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: TestResults'
inputs:
PathtoPublish: 'artifacts/TestResults'
ArtifactName: 'FullOnWindows Release test logs'
continueOnError: true
condition: always()
Does this capture files that have been missed for some time? Edit: I noticed it when opting into perf log capturing. The perf logs were being uploaded without an explicit yml task for it. |
This (test publish) is subtly distinct from that (artifact upload). This drives the results that appear in the test tab. When this works we should see way more tests there.
Yeah, since we moved off 2.1 😬 |
benvillalobos
left a comment
There was a problem hiding this comment.
This drives the results that appear in the test tab
😲 makes sense!


These should have been changed when we updated past .NET Core 2.1 but were missed.
Fixes these warnings:
Should be futureproof since it's just "upload everything that's not
net472".