Skip to content

Commit 0e91597

Browse files
Disable flaky test AsyncRelayCommand_AddsTransactionsOrSpans on CI (#4281)
Resolves #4229: - #4229 #skip-changelog
1 parent 6900cce commit 0e91597

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/Sentry.Maui.CommunityToolkit.Mvvm.Tests/MauiCommunityToolkitMvvmEventsBinderTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,14 @@ public Fixture()
3838

3939
private readonly Fixture _fixture = new();
4040

41-
[Theory]
41+
[SkippableTheory]
4242
[InlineData(true)]
4343
[InlineData(false)]
4444
public async Task AsyncRelayCommand_AddsTransactionsOrSpans(bool isActiveTransaction)
4545
{
46+
// TODO: See if we can resolve this and reinstate the test
47+
Skip.If(TestEnvironment.IsGitHubActions, "Flaky on CI");
48+
4649
// Arrange
4750
var transaction = Substitute.For<ITransactionTracer>();
4851
var span = Substitute.For<ISpan>();

0 commit comments

Comments
 (0)