-
Notifications
You must be signed in to change notification settings - Fork 10.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update test runner to 2.4.3 #24685
Update test runner to 2.4.3 #24685
Conversation
Using rc1 SDK requires an update to the test runner. In the absence of this change dotnet test silently fails. This means none of our helix tests are currently executing.
PR to fix this in Arcade: dotnet/arcade#5908. |
Hello @pranavkm! Because this pull request has the Do note that I've been instructed to only help merge pull requests of this repository that have been opened for at least 60 minutes, a condition that will be fulfilled in about 52 minutes. No worries though, I will be back when the time is right! 😉 p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
922d5d6
to
72c727c
Compare
72c727c
to
bf5feaf
Compare
@@ -40,7 +40,6 @@ | |||
<ExternalAspNetCoreAppReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="$(MicrosoftExtensionsOptionsDataAnnotationsPackageVersion)" /> | |||
<ExternalAspNetCoreAppReference Include="Microsoft.Extensions.Options" Version="$(MicrosoftExtensionsOptionsPackageVersion)" /> | |||
<ExternalAspNetCoreAppReference Include="Microsoft.Extensions.Primitives" Version="$(MicrosoftExtensionsPrimitivesPackageVersion)" /> | |||
<ExternalAspNetCoreAppReference Include="System.IO.Pipelines" Version="$(SystemIOPipelinesPackageVersion)" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This removal and the test fixes should close #24392 Thanx❕
@@ -13,7 +13,6 @@ | |||
|
|||
<ItemGroup> | |||
<Reference Include="Microsoft.AspNetCore.Http.Features" /> | |||
<Reference Include="System.IO.Pipelines" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice cleanup. This was brought in transitively through Microsoft.AspNetCore.Http.Features since forever
@@ -279,6 +279,7 @@ | |||
<XunitAssertPackageVersion>$(XunitVersion)</XunitAssertPackageVersion> | |||
<XunitExtensibilityCorePackageVersion>$(XunitVersion)</XunitExtensibilityCorePackageVersion> | |||
<XunitExtensibilityExecutionPackageVersion>$(XunitVersion)</XunitExtensibilityExecutionPackageVersion> | |||
<XUnitRunnerVisualStudioVersion>2.4.3</XUnitRunnerVisualStudioVersion> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Teensy nit: Should we have a comment reminding us to remove this line once we pick up Arcade bits containing the dotnet/arcade#5908 fix❔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done: #24750
bf5feaf
to
9996c8a
Compare
9996c8a
to
7430d9f
Compare
Couple of missed tests, should be green now. |
Using rc1 SDK requires an update to the test runner. In the absence of this change
dotnet test silently fails. This means none of our helix tests are currently executing.