diff --git a/Samples/iOS-Swift/iOS-Swift.xcodeproj/xcshareddata/xcschemes/iOS-Swift.xcscheme b/Samples/iOS-Swift/iOS-Swift.xcodeproj/xcshareddata/xcschemes/iOS-Swift.xcscheme index 19ea1dabdc..20ead11472 100644 --- a/Samples/iOS-Swift/iOS-Swift.xcodeproj/xcshareddata/xcschemes/iOS-Swift.xcscheme +++ b/Samples/iOS-Swift/iOS-Swift.xcodeproj/xcshareddata/xcschemes/iOS-Swift.xcscheme @@ -41,6 +41,9 @@ + + diff --git a/Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme b/Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme index e2e8db4604..5de564f718 100644 --- a/Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme +++ b/Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme @@ -56,22 +56,34 @@ + Identifier = "SentryCrashIntegrationTests/testStartUpCrash_CallsFlush_disabled()"> + Identifier = "SentryFileIOTrackingIntegrationTests/test_DataConsistency_readUrl_disabled()"> + + + + + + + + + Identifier = "SentrySessionGeneratorTests/testSendSessions_disabled()"> diff --git a/Tests/SentryTests/Integrations/OutOfMemory/SentryOutOfMemoryIntegrationTests.swift b/Tests/SentryTests/Integrations/OutOfMemory/SentryOutOfMemoryIntegrationTests.swift index 12d4300220..6c307654d3 100644 --- a/Tests/SentryTests/Integrations/OutOfMemory/SentryOutOfMemoryIntegrationTests.swift +++ b/Tests/SentryTests/Integrations/OutOfMemory/SentryOutOfMemoryIntegrationTests.swift @@ -63,7 +63,7 @@ class SentryOutOfMemoryIntegrationTests: XCTestCase { } #if os(iOS) || os(tvOS) || targetEnvironment(macCatalyst) - func testANRDetected_UpdatesAppStateToTrue() { + func testANRDetected_UpdatesAppStateToTrue_disabled() { givenInitializedTracker() Dynamic(sut).anrDetected() diff --git a/Tests/SentryTests/Integrations/Performance/Network/SentryNetworkTrackerIntegrationTests.swift b/Tests/SentryTests/Integrations/Performance/Network/SentryNetworkTrackerIntegrationTests.swift index bd17eabb44..7b864a3969 100644 --- a/Tests/SentryTests/Integrations/Performance/Network/SentryNetworkTrackerIntegrationTests.swift +++ b/Tests/SentryTests/Integrations/Performance/Network/SentryNetworkTrackerIntegrationTests.swift @@ -149,7 +149,7 @@ class SentryNetworkTrackerIntegrationTests: XCTestCase { XCTAssertEqual(1, breadcrumbs?.count) } - func testGetRequest_SpanCreatedAndBaggageHeaderAdded() { + func testGetRequest_SpanCreatedAndBaggageHeaderAdded_disabled() { startSDK() let transaction = SentrySDK.startTransaction(name: "Test Transaction", operation: "TEST", bindToScope: true) as! SentryTracer let expect = expectation(description: "Request completed") diff --git a/Tests/SentryTests/Integrations/Session/SentrySessionGeneratorTests.swift b/Tests/SentryTests/Integrations/Session/SentrySessionGeneratorTests.swift index 4b9fa79644..aa57b4011f 100644 --- a/Tests/SentryTests/Integrations/Session/SentrySessionGeneratorTests.swift +++ b/Tests/SentryTests/Integrations/Session/SentrySessionGeneratorTests.swift @@ -62,7 +62,7 @@ class SentrySessionGeneratorTests: NotificationCenterTestCase { /** * Disabled on purpose. This test just sends sessions to Sentry, but doesn't verify that they arrive there properly. */ - func testSendSessions() { + func testSendSessions_disabled() { sendSessions(amount: Sessions(healthy: 10, errored: 10, crashed: 3, oom: 1, abnormal: 1)) } diff --git a/Tests/SentryTests/Networking/SentryHttpTransportTests.swift b/Tests/SentryTests/Networking/SentryHttpTransportTests.swift index 4975dd2a2f..5b44c81587 100644 --- a/Tests/SentryTests/Networking/SentryHttpTransportTests.swift +++ b/Tests/SentryTests/Networking/SentryHttpTransportTests.swift @@ -644,7 +644,7 @@ class SentryHttpTransportTests: XCTestCase { assertFlushBlocksAndFinishesSuccessfully() } - func testFlush_CalledSequentially_BlocksTwice() { + func testFlush_CalledSequentially_BlocksTwice_disabled() { CurrentDate.setCurrentDateProvider(DefaultCurrentDateProvider.sharedInstance()) givenCachedEvents()