diff --git a/test/Sentry.Profiling.Tests/SamplingTransactionProfilerTests.cs b/test/Sentry.Profiling.Tests/SamplingTransactionProfilerTests.cs index 1d1b1c7828..b4e38358aa 100644 --- a/test/Sentry.Profiling.Tests/SamplingTransactionProfilerTests.cs +++ b/test/Sentry.Profiling.Tests/SamplingTransactionProfilerTests.cs @@ -146,6 +146,8 @@ private void Profiler_SingleProfile_Works(int startTimeoutSeconds) [InlineData(10)] public void Profiler_MultipleProfiles_Works(int startTimeoutSeconds) { + Skip.If(TestEnvironment.IsGitHubActions, "Flaky on CI"); + using var factory = new SamplingTransactionProfilerFactory(_testSentryOptions, TimeSpan.FromSeconds(startTimeoutSeconds)); // in the async startup case, we need to wait before collecting if (startTimeoutSeconds == 0)