Skip to content

Commit

Permalink
Enable test runs on 19H1 (#775)
Browse files Browse the repository at this point in the history
  • Loading branch information
jevansaks authored Jun 10, 2019
1 parent 0eb29e6 commit 29513dc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ parameters:
Release_x64:
buildPlatform: 'x64'
buildConfiguration: 'release'
helixTargetQueues: 'Windows.10.Amd64.ClientRS2.Open%3bWindows.10.Amd64.ClientRS4.Open'
helixTargetQueues: 'Windows.10.Amd64.ClientRS2.Open%3bWindows.10.Amd64.ClientRS4.Open%3bWindows.10.Amd64.Client19H1.Open'

jobs:
- job: ${{ parameters.name }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,12 @@ public void ValidateKeyboarding()
return;
}

if (PlatformConfiguration.IsOsVersionGreaterThanOrEqual(OSVersion.NineteenH1))
{
Log.Warning("Test is disabled on 19H1 because the logic to restore focus seems to have regressed. Tracked by microsoft-ui-xaml#774");
return;
}

using (var setup = new TextCommandBarFlyoutTestSetupHelper())
{
Log.Comment("Give focus to the TextBox.");
Expand Down
6 changes: 6 additions & 0 deletions dev/Repeater/APITests/RepeaterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,12 @@ public void VerifyCurrentAnchor()
[TestMethod]
public void NestedRepeaterWithDataTemplateScenario()
{
if (PlatformConfiguration.IsOsVersionGreaterThanOrEqual(OSVersion.NineteenH1))
{
Log.Warning("This test is showing consistent issues with not scrolling enough, tracked by microsoft-ui-xaml#779");
return;
}

ItemsRepeater rootRepeater = null;
ScrollViewer scrollViewer = null;
ManualResetEvent viewChanged = new ManualResetEvent(false);
Expand Down

0 comments on commit 29513dc

Please sign in to comment.