[BRT] Mitigating flaky SignalR tests (#8423)
* add the ability to skip c++ tests and skip signalr one (mitigates #8421)
This commit is contained in:
parent
5efa1ba0b9
commit
61a9964a15
|
|
@ -13,6 +13,7 @@
|
||||||
<Target Name="Restore" />
|
<Target Name="Restore" />
|
||||||
<Target Name="ResolveNuGetPackageAssets" />
|
<Target Name="ResolveNuGetPackageAssets" />
|
||||||
<Target Name="Test" Condition="'$(IsTestProject)' == 'true'" >
|
<Target Name="Test" Condition="'$(IsTestProject)' == 'true'" >
|
||||||
<Exec Command=""$(TargetPath)"" />
|
<Warning Condition="'$(TestProjectSkipReason)' != ''" Text="Skipped $(MSBuildProjectFileName): $(TestProjectSkipReason)" />
|
||||||
|
<Exec Condition="'$(TestProjectSkipReason)' == ''" Command=""$(TargetPath)"" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -95,5 +95,6 @@
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<IsTestProject>true</IsTestProject>
|
<IsTestProject>true</IsTestProject>
|
||||||
|
<TestProjectSkipReason>Flaky, due to https://github.com/aspnet/AspNetCore/issues/8421</TestProjectSkipReason>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue