Disable failing/hanging tests due to Chrome/Selenium issue (#25323)

This commit is contained in:
John Luo 2020-08-27 13:16:01 -07:00 committed by GitHub
parent bb769fe266
commit 7b8fe53234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,9 @@
<SkipTests Condition="'$(SeleniumE2ETestsSupported)' != 'true'">true</SkipTests>
<SkipTests Condition="'$(SeleniumE2ETestsSupported)' == 'true'">false</SkipTests>
<!-- Tests are disabled due to https://github.com/dotnet/aspnetcore/issues/25322 -->
<SkipTests>true</SkipTests>
<!-- Tests do not work on Helix or when bin/ directory is not in project directory due to undeclared dependency on test content. -->
<BaseOutputPath />

View File

@ -10,6 +10,10 @@
<RunTemplateTests Condition="'$(RunTemplateTests)' == ''" >true</RunTemplateTests>
<SkipTests Condition="'$(RunTemplateTests)' != 'true'">true</SkipTests>
<!-- Tests are disabled due to https://github.com/dotnet/aspnetcore/issues/25322 -->
<SkipTests>true</SkipTests>
<!--Do not run this test project on Helix.-->
<BuildHelixPayload>false</BuildHelixPayload>
<SkipHelixArm>true</SkipHelixArm>