Skip to content

Commit

Permalink
Skip flaky integration tests (#60464)
Browse files Browse the repository at this point in the history
  • Loading branch information
allisonchou authored Mar 29, 2022
1 parent f6e3f0c commit dcfd613
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public CSharpRenameFileToMatchTypeRefactoring(VisualStudioInstanceFactory instan
{
}

[WpfFact, Trait(Traits.Feature, Traits.Features.CodeActionsMoveType)]
[WpfFact(Skip = "https://github.com/dotnet/roslyn/issues/60463"), Trait(Traits.Feature, Traits.Features.CodeActionsMoveType)]
public void RenameFileToMatchType_ExistingCode()
{
var project = new ProjectUtils.Project(ProjectName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class Program
await TestServices.EditorVerifier.CodeActionAsync("using System;", cancellationToken: HangMitigatingCancellationToken);
}

[IdeFact, Trait(Traits.Feature, Traits.Features.CodeActionsAddImport)]
[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/60460"), Trait(Traits.Feature, Traits.Features.CodeActionsAddImport)]
public async Task FastDoubleInvoke()
{
// We want to invoke the first smart tag and then *immediately* try invoking the next.
Expand Down Expand Up @@ -462,7 +462,7 @@ await TestServices.EditorVerifier.CodeActionAsync(
AssertEx.EqualOrDiff(expectedSecondFile, await TestServices.Editor.GetTextAsync(HangMitigatingCancellationToken));
}

[IdeFact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateMethod)]
[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/60461"), Trait(Traits.Feature, Traits.Features.CodeActionsGenerateMethod)]
public async Task ClassificationInPreviewPane()
{
await SetUpEditorAsync(@"
Expand Down Expand Up @@ -538,7 +538,7 @@ await TestServices.Workspace.WaitForAllAsyncOperationsAsync(
await TestServices.EditorVerifier.TextContainsAsync("using System.IO;", cancellationToken: HangMitigatingCancellationToken);
}

[IdeFact, Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/60461"), Trait(Traits.Feature, Traits.Features.CodeActionsGenerateType)]
public async Task GFUFuzzyMatchAfterRenameTrackingAndAfterGenerateType()
{
await SetUpEditorAsync(@"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public async Task CPSProject_GeneralPropertyGroupUpdated()
VerifyPropertyOutsideConfiguration(await GetProjectFileElementAsync(project, HangMitigatingCancellationToken), "AllowUnsafeBlocks", "true");
}

[IdeFact]
[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/60461")]
public async Task LegacyProject_AllConfigurationsUpdated()
{
var project = ProjectName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public async Task CPSProject_GeneralPropertyGroupUpdated()
VerifyPropertyOutsideConfiguration(await GetProjectFileElementAsync(project, HangMitigatingCancellationToken), "LangVersion", "latest");
}

[IdeFact]
[IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/60463")]
public async Task LegacyProject_AllConfigurationsUpdated()
{
var project = ProjectName;
Expand Down

0 comments on commit dcfd613

Please sign in to comment.