Skip to content

Unify UI Tests and Enforce Swift 6.3#25

Merged
lukaskollmer merged 9 commits into
mainfrom
fixBuilds
Jul 16, 2026
Merged

Unify UI Tests and Enforce Swift 6.3#25
lukaskollmer merged 9 commits into
mainfrom
fixBuilds

Conversation

@PSchmiedmayer

@PSchmiedmayer PSchmiedmayer commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

♻️ Current situation & Problem

The monorepo's UI-test projects duplicated configuration across packages and had drifted from current Xcode defaults. Moving the package to Swift 6.3 and Xcode 27 also exposed concurrency diagnostics, nondeterministic unit/UI tests, and legacy runtime-assertion test infrastructure that is now superseded by Swift Testing's native exit tests.

No related issue was identified.

⚙️ Release Notes

  • Unify 28 UI-test projects around a canonical generated project and a TOML configuration manifest, with CI validation that generated projects remain synchronized.
  • Disable parallel execution for UI-test invocations only; unit tests remain parallelized.
  • Enforce Swift 6 across the package, update the toolchain declaration to Swift 6.3, and resolve affected concurrency and Xcode 27 compatibility issues in SpeziLLM, location, scheduler, study, and test support code.
  • Stabilize unit and UI tests with explicit state synchronization, resilient UI waits and text entry, dynamic notification-trigger assertions, and complete generated dependencies for the SpeziLicense fixture.
  • Remove the XCTRuntimeAssertions product and migrate repository consumers to Swift 6.3 native exit tests on macOS. Deprecate all RuntimeAssertionsTesting APIs on every platform while retaining their compatibility self-tests.

XCTRuntimeAssertions removal is a breaking change for test targets that import it. Migrate assertion/precondition tests to native Swift Testing exit tests:

import Testing

#if os(macOS)
@Test
func testPrecondition() async throws {
    let result = try await #require(
        processExitsWith: .failure,
        observing: [\.standardErrorContent]
    ) {
        // Code expected to terminate the child process.
    }

    let standardError = String(decoding: result.standardErrorContent, as: UTF8.self)
    #expect(standardError.contains("Expected failure message"))
}
#endif

📚 Documentation

  • Document the UI-test generator and configuration manifest inline.
  • Update the RuntimeAssertions README and DocC migration guidance for Swift Testing exit tests.
  • Document that deprecated precondition helpers must not receive actor-isolated closures; native exit tests are the supported replacement for actor-isolated code.

✅ Testing

  • python3 Scripts/generate-ui-test-projects.py --check
  • Python byte-compilation for affected repository scripts
  • swift package dump-package with Swift 6.3
  • SwiftLint in strict mode
  • REUSE compliance
  • Full macOS test plans for RuntimeAssertions, Spezi, SpeziFoundation, and SpeziScheduler
  • RuntimeAssertions iOS test plan
  • iOS build-for-testing for Spezi, SpeziFoundation, and SpeziScheduler
  • RuntimeAssertions watchOS build-for-testing
  • Test-plan JSON, package TOML, and scheme XML validation

The complete unit/UI and deployment-floor matrix is also validated by PR CI.

Code of Conduct & Contributing Guidelines

By creating and submitting this pull request, you agree to follow our Code of Conduct and Contributing Guidelines:

Copilot AI review requested due to automatic review settings July 14, 2026 18:39
@coderabbitai

coderabbitai Bot commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 155 files, which is 105 over the limit of 50.

To get a review, narrow the scope:
• coderabbit review --type committed # exclude uncommitted changes
• coderabbit review --dir # limit to a subdirectory
• coderabbit review --base # compare against a closer base

Upgrade to a paid plan to raise the limit.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: fd0d2564-da52-4f7a-8759-203a86b77e42

📥 Commits

Reviewing files that changed from the base of the PR and between 2b63b79 and 5bd1433.

⛔ Files ignored due to path filters (28)
  • Tests/HealthKitOnFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/ResearchKitOnFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziAccessGuardTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziAccountTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziBluetoothTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziChatTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziConsentTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziContactTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziDevicesTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziFoundationTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziHealthKitTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziLLMTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziOnboardingTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziQuestionnaireTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziSchedulerTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziSpeechTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziStorageTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziStudyTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/SpeziViewsTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/XCTHealthKitTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
  • Tests/XCTestExtensionsTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata is excluded by !**/*.xcworkspace/contents.xcworkspacedata
📒 Files selected for processing (564)
  • .github/workflows/static-analysis.yml
  • .gitignore
  • .spi.yml
  • .swiftpm/xcode/xcshareddata/xcschemes/Spezi-Tests.xcscheme
  • Package.swift
  • REUSE.toml
  • Scripts/affected-test-matrix.py
  • Scripts/generate-ui-test-projects.py
  • Scripts/run-package-tests.sh
  • Sources/GeneratedOpenAIClient/AuthToken/RemoteLLMInferenceAuthToken+GetToken.swift
  • Sources/GeneratedOpenAIClient/AuthToken/RemoteLLMInferenceAuthToken.swift
  • Sources/GeneratedOpenAIClient/AuthToken/RemoteLLMInferenceAuthTokenError.swift
  • Sources/GeneratedOpenAIClient/GeneratedOpenAIClient.swift
  • Sources/GeneratedOpenAIClient/Middleware/Retries/DelayPolicy.swift
  • Sources/GeneratedOpenAIClient/Middleware/Retries/RetryPolicy.swift
  • Sources/GeneratedOpenAIClient/Middleware/Retries/RetryableSignal.swift
  • Sources/GeneratedOpenAIClient/Middleware/RetryMiddleware.swift
  • Sources/RuntimeAssertions/.spi.yml
  • Sources/RuntimeAssertions/CONTRIBUTORS.md
  • Sources/RuntimeAssertions/README.md
  • Sources/RuntimeAssertionsTesting/RuntimeAssertion.swift
  • Sources/RuntimeAssertionsTesting/RuntimeAssertionsTesting.docc/RuntimeAssertionsTesting.md
  • Sources/RuntimeAssertionsTesting/RuntimePrecondition.swift
  • Sources/Spezi/Notifications/RemoteNotificationRegistrationSupport.swift
  • Sources/SpeziFHIRMockPatients/FHIRMockBundleSelector.swift
  • Sources/SpeziLocation/LocationTasks/GetLocationTask.swift
  • Sources/SpeziLocation/LocationTasks/LocationAuthorizationTask.swift
  • Sources/SpeziLocation/LocationTasks/LocationTaskManager.swift
  • Sources/SpeziLocation/SpeziLocation.swift
  • Sources/SpeziScheduler/Notifications/NotificationScenePhaseScheduling.swift
  • Sources/SpeziScheduler/Notifications/SchedulerNotifications.swift
  • Sources/SpeziScheduler/Scheduler.swift
  • Sources/SpeziStudy/Study Manager/StudyManager.swift
  • Sources/XCTHealthKit/XCTest+AddSamples.swift
  • Sources/XCTHealthKit/XCTest+CharacteristicEntry.swift
  • Sources/XCTRuntimeAssertions/Deprecations.swift
  • Sources/XCTRuntimeAssertions/XCTRuntimeAssertion.swift
  • Sources/XCTRuntimeAssertions/XCTRuntimeAssertions.docc/XCTRuntimeAssertions.md
  • Sources/XCTRuntimeAssertions/XCTRuntimePrecondition.swift
  • Sources/XCTSpeziNotifications/XCTSpeziNotifications.docc/XCTSpeziNotifications.md
  • Sources/XCTSpeziNotifications/XCUIApplication+NotificationDetails.swift
  • Sources/XCTestExtensions/XCUIElement+TextEntry.swift
  • Tests/HealthKitOnFHIRTests/UITests/TestApp.xctestplan
  • Tests/HealthKitOnFHIRTests/UITests/TestApp.xctestplan.license
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/ContentView.swift
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/HealthKitManager.swift
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/Support Files/Info.plist
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/Support Files/Info.plist.license
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/Views/CreateWorkoutView.swift
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/Views/ElectrocardiogramTestView.swift
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/Views/HealthRecordsTestView.swift
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/Views/ReadDataView.swift
  • Tests/HealthKitOnFHIRTests/UITests/TestApp/Views/TestView.swift
  • Tests/HealthKitOnFHIRTests/UITests/TestAppUITests/TestAppUITests.swift
  • Tests/HealthKitOnFHIRTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/HealthKitOnFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/HealthKitOnFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/HealthKitOnFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/HealthKitOnFHIRTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/HealthKitOnFHIRTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/ResearchKitOnFHIRTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/ResearchKitOnFHIRTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/ResearchKitOnFHIRTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/ResearchKitOnFHIRTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/ResearchKitOnFHIRTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/ResearchKitOnFHIRTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/ResearchKitOnFHIRTests/UITests/TestApp/JSON Views/QuestionnaireJSONView.swift
  • Tests/ResearchKitOnFHIRTests/UITests/TestApp/Questionnaire/QuestionnaireView.swift
  • Tests/ResearchKitOnFHIRTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/ResearchKitOnFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/ResearchKitOnFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/ResearchKitOnFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/ResearchKitOnFHIRTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/Example.xcscheme.license
  • Tests/RuntimeAssertionsTests/RuntimePreconditionsTests.swift
  • Tests/SpeziAccessGuardTests/UITests/TestApp.xctestplan
  • Tests/SpeziAccessGuardTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziAccessGuardTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziAccessGuardTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziAccessGuardTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziAccessGuardTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziAccessGuardTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziAccessGuardTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziAccessGuardTests/UITests/TestApp/ConsumableCodesModule.swift
  • Tests/SpeziAccessGuardTests/UITests/TestApp/Info.plist
  • Tests/SpeziAccessGuardTests/UITests/TestApp/Info.plist.license
  • Tests/SpeziAccessGuardTests/UITests/TestApp/TestAppDelegate.swift
  • Tests/SpeziAccessGuardTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziAccessGuardTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziAccessGuardTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziAccessGuardTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziAccessGuardTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziAccessGuardTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziAccessGuardTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme.license
  • Tests/SpeziAccountTests/UITests/TestApp.xctestplan
  • Tests/SpeziAccountTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziAccountTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziAccountTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziAccountTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziAccountTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziAccountTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziAccountTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziAccountTests/UITests/TestApp/Info.plist
  • Tests/SpeziAccountTests/UITests/TestApp/Info.plist.license
  • Tests/SpeziAccountTests/UITests/TestAppUITests/AccountOverviewTests.swift
  • Tests/SpeziAccountTests/UITests/TestAppUITests/DocumentationHintsTests.swift
  • Tests/SpeziAccountTests/UITests/TestAppUITests/EntryViewsTests.swift
  • Tests/SpeziAccountTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziAccountTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziAccountTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziAccountTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziAccountTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziAccountTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziBluetoothTests/UITests/TestApp.xctestplan
  • Tests/SpeziBluetoothTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziBluetoothTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziBluetoothTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziBluetoothTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziBluetoothTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziBluetoothTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziBluetoothTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziBluetoothTests/UITests/TestApp/BluetoothModuleView.swift
  • Tests/SpeziBluetoothTests/UITests/TestApp/Info.plist
  • Tests/SpeziBluetoothTests/UITests/TestApp/Info.plist.license
  • Tests/SpeziBluetoothTests/UITests/TestApp/RetrievePairedDevicesView.swift
  • Tests/SpeziBluetoothTests/UITests/TestApp/TestDevice.swift
  • Tests/SpeziBluetoothTests/UITests/TestApp/TestDeviceView.swift
  • Tests/SpeziBluetoothTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziBluetoothTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziBluetoothTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziBluetoothTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziBluetoothTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziBluetoothTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziChatTests/UITests/TestApp.xctestplan
  • Tests/SpeziChatTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziChatTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziChatTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziChatTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziChatTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziChatTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziChatTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziChatTests/UITests/TestAppUITests/TestAppUITests.swift
  • Tests/SpeziChatTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziChatTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziChatTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziChatTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziChatTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziChatTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziConsentTests/UITests/TestApp.xctestplan
  • Tests/SpeziConsentTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziConsentTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziConsentTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziConsentTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziConsentTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziConsentTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziConsentTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziConsentTests/UITests/TestApp/Consent/OnboardingConsent.swift
  • Tests/SpeziConsentTests/UITests/TestApp/Consent/RenderedConsentDocumentView.swift
  • Tests/SpeziConsentTests/UITests/TestApp/Consent/StandaloneConsent.swift
  • Tests/SpeziConsentTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziConsentTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziConsentTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziConsentTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziConsentTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziConsentTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziContactTests/UITests/TestApp.xctestplan
  • Tests/SpeziContactTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziContactTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziContactTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziContactTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziContactTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziContactTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziContactTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziContactTests/UITests/TestAppUITests/SpeziContactsTests.swift
  • Tests/SpeziContactTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziContactTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziContactTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziContactTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziContactTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/CardinalKitHealthKitToFHIRAdapter.xcscheme.license
  • Tests/SpeziContactTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziContactTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziDevicesTests/UITests/TestApp.xctestplan
  • Tests/SpeziDevicesTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziDevicesTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziDevicesTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziDevicesTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziDevicesTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziDevicesTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziDevicesTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziDevicesTests/UITests/TestApp/BluetoothViewsTest.swift
  • Tests/SpeziDevicesTests/UITests/TestApp/ContentView.swift
  • Tests/SpeziDevicesTests/UITests/TestApp/DevicesTestView.swift
  • Tests/SpeziDevicesTests/UITests/TestApp/Views/BluetoothUnavailableSection.swift
  • Tests/SpeziDevicesTests/UITests/TestApp/Views/MockDeviceDetailsView.swift
  • Tests/SpeziDevicesTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziDevicesTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziDevicesTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziDevicesTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziDevicesTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziDevicesTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziDevicesTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme.license
  • Tests/SpeziFHIRTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziFHIRTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziFHIRTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziFHIRTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziFHIRTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziFHIRTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/TestApp.xctestplan
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/TestApp.xctestplan.license
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved.license
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziFHIRTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziFirebaseTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziFirebaseTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziFirebaseTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziFirebaseTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziFirebaseTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziFirebaseTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziFirebaseTests/UITests/TestApp/Info.plist
  • Tests/SpeziFirebaseTests/UITests/TestApp/Info.plist.license
  • Tests/SpeziFirebaseTests/UITests/TestApp/Shared/TestAppDelegate.swift
  • Tests/SpeziFirebaseTests/UITests/TestApp/TestApp.swift
  • Tests/SpeziFirebaseTests/UITests/TestAppUITests/FirebaseAccountTests.swift
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/TestApp.xctestplan
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/TestApp.xctestplan.license
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved.license
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziFirebaseTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziFoundationTests/OrderedArrayTests.swift
  • Tests/SpeziFoundationTests/UITests/TestApp.xctestplan
  • Tests/SpeziFoundationTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziFoundationTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziFoundationTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziFoundationTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziFoundationTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziFoundationTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziFoundationTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziFoundationTests/UITests/TestApp/TestApp.entitlements
  • Tests/SpeziFoundationTests/UITests/TestApp/TestApp.entitlements.license
  • Tests/SpeziFoundationTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziFoundationTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziFoundationTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziFoundationTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziFoundationTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziFoundationTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziHealthKitTests/UITests/TestApp.xctestplan
  • Tests/SpeziHealthKitTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziHealthKitTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziHealthKitTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziHealthKitTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziHealthKitTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziHealthKitTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziHealthKitTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziHealthKitTests/UITests/TestApp/HealthKitTestsView/BulkExportView.swift
  • Tests/SpeziHealthKitTests/UITests/TestApp/HealthKitTestsView/CollectSamplesTestView.swift
  • Tests/SpeziHealthKitTests/UITests/TestApp/Info.plist
  • Tests/SpeziHealthKitTests/UITests/TestApp/Info.plist.license
  • Tests/SpeziHealthKitTests/UITests/TestAppUITests/AuthorizationTests.swift
  • Tests/SpeziHealthKitTests/UITests/TestAppUITests/BulkExporterTests.swift
  • Tests/SpeziHealthKitTests/UITests/TestAppUITests/HealthKitQueryTests.swift
  • Tests/SpeziHealthKitTests/UITests/TestAppUITests/SpeziHealthKitTests.swift
  • Tests/SpeziHealthKitTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziHealthKitTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziHealthKitTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziHealthKitTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziHealthKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/CardinalKitHealthKitToFHIRAdapter.xcscheme.license
  • Tests/SpeziHealthKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziHealthKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziLLMTests/UITests/TestApp.xctestplan
  • Tests/SpeziLLMTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziLLMTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziLLMTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziLLMTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziLLMTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziLLMTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziLLMTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziLLMTests/UITests/TestApp/LLMFog/Onboarding/AccountOnboardingView.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMFog/Onboarding/LLMFogAuthTokenOnboardingView.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMFog/Onboarding/LLMFogDiscoveryAuthOnboardingView.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMFog/Onboarding/LLMFogDiscoverySelectionOnboardingView.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMFog/Onboarding/LLMFogOnboardingFlow.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMLocal/LLMLocalChatTestView.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMLocal/LLMLocalTestView.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMLocal/Onboarding/LLMLocalOnboardingDownloadView.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMOpenAI/Onboarding/LLMOpenAIAPIKeyOnboarding.swift
  • Tests/SpeziLLMTests/UITests/TestApp/LLMOpenAIRealtime/LLMOpenAIRealtimeTokenOnboarding.swift
  • Tests/SpeziLLMTests/UITests/TestApp/TestApp.entitlements
  • Tests/SpeziLLMTests/UITests/TestApp/TestApp.entitlements.license
  • Tests/SpeziLLMTests/UITests/TestApp/TestAppDelegate.swift
  • Tests/SpeziLLMTests/UITests/TestAppUITests/OpenAIUITests.swift
  • Tests/SpeziLLMTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziLLMTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziLLMTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziLLMTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziLLMTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziLLMTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziLLMTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppRelease.xcscheme.license
  • Tests/SpeziLicenseTests/UITests/TestApp.xctestplan
  • Tests/SpeziLicenseTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziLicenseTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziLicenseTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziLicenseTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziLicenseTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziLicenseTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziLicenseTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme
  • Tests/SpeziLicenseTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme.license
  • Tests/SpeziLocationTests/UITests/TestApp.xctestplan
  • Tests/SpeziLocationTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziLocationTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziLocationTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziLocationTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziLocationTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziLocationTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziLocationTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziLocationTests/UITests/TestApp/Info.plist
  • Tests/SpeziLocationTests/UITests/TestApp/Info.plist.license
  • Tests/SpeziLocationTests/UITests/TestApp/TestApp.swift
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme
  • Tests/SpeziLocationTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme.license
  • Tests/SpeziNotificationsTests/UITests/TestApp.xctestplan
  • Tests/SpeziNotificationsTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziNotificationsTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziNotificationsTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziNotificationsTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziNotificationsTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziNotificationsTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziNotificationsTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme
  • Tests/SpeziNotificationsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme.license
  • Tests/SpeziOnboardingTests/UITests/TestApp.xctestplan
  • Tests/SpeziOnboardingTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziOnboardingTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziOnboardingTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziOnboardingTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziOnboardingTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziOnboardingTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziOnboardingTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziOnboardingTests/UITests/TestApp/Views/ScreenshotsFlow.swift
  • Tests/SpeziOnboardingTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziOnboardingTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziOnboardingTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziOnboardingTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziOnboardingTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziOnboardingTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziQuestionnaireTests/UITests/TestApp.xctestplan
  • Tests/SpeziQuestionnaireTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/Info.plist
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/Info.plist.license
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/QuestionnaireTestViews/TestsPage+QuestionnaireDefs.swift
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/TestApp.entitlements
  • Tests/SpeziQuestionnaireTests/UITests/TestApp/TestApp.entitlements.license
  • Tests/SpeziQuestionnaireTests/UITests/TestAppUITests/QuestionKindTests.swift
  • Tests/SpeziQuestionnaireTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziQuestionnaireTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziQuestionnaireTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziQuestionnaireTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziQuestionnaireTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziQuestionnaireTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziSchedulerTests/SchedulerTests.swift
  • Tests/SpeziSchedulerTests/UITests/TestApp.xctestplan
  • Tests/SpeziSchedulerTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziSchedulerTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziSchedulerTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziSchedulerTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziSchedulerTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziSchedulerTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziSchedulerTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziSchedulerTests/UITests/TestApp/NotificationsView.swift
  • Tests/SpeziSchedulerTests/UITests/TestApp/ObserveNewOutcomesTestingView.swift
  • Tests/SpeziSchedulerTests/UITests/TestApp/ScheduleView.swift
  • Tests/SpeziSchedulerTests/UITests/TestApp/ShadowedOutcomeTestingView.swift
  • Tests/SpeziSchedulerTests/UITests/TestApp/Task+About.swift
  • Tests/SpeziSchedulerTests/UITests/TestApp/TestApp.swift
  • Tests/SpeziSchedulerTests/UITests/TestApp/TestAppScheduler.swift
  • Tests/SpeziSchedulerTests/UITests/TestAppUITests/TestAppUITests.swift
  • Tests/SpeziSchedulerTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziSchedulerTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziSchedulerTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziSchedulerTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziSchedulerTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziSchedulerTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziSensorKitTests/UITests/TestApp.xctestplan
  • Tests/SpeziSensorKitTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziSensorKitTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziSensorKitTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziSensorKitTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziSensorKitTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziSensorKitTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziSensorKitTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziSensorKitTests/UITests/TestAppWatchApp.xctestplan
  • Tests/SpeziSensorKitTests/UITests/TestAppWatchApp.xctestplan.license
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme
  • Tests/SpeziSensorKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme.license
  • Tests/SpeziSpeechTests/UITests/TestApp.xctestplan
  • Tests/SpeziSpeechTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziSpeechTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziSpeechTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziSpeechTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziSpeechTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziSpeechTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziSpeechTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziSpeechTests/UITests/TestApp/SpeechTestView.swift
  • Tests/SpeziSpeechTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziSpeechTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziSpeechTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziSpeechTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziSpeechTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziSpeechTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziStorageTests/UITests/TestApp.xctestplan
  • Tests/SpeziStorageTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziStorageTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziStorageTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziStorageTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziStorageTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziStorageTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziStorageTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziStorageTests/UITests/TestApp/TestApp.entitlements
  • Tests/SpeziStorageTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziStorageTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziStorageTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziStorageTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziStorageTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/CardinalKitHealthKitToFHIRAdapter.xcscheme.license
  • Tests/SpeziStorageTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziStorageTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziStudyTests/StudyManagerTests.swift
  • Tests/SpeziStudyTests/UITests/TestApp.xctestplan
  • Tests/SpeziStudyTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziStudyTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziStudyTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziStudyTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziStudyTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziStudyTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziStudyTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziStudyTests/UITests/TestApp/MockStudy.swift
  • Tests/SpeziStudyTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziStudyTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziStudyTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziStudyTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziStudyTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziStudyTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziStudyTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestAppWatchApp.xcscheme.license
  • Tests/SpeziTests/CapabilityTests/NotificationsTests.swift
  • Tests/SpeziTests/DependenciesTests/DependencyContextTests.swift
  • Tests/SpeziTests/StandardTests/StandardInjectionTests.swift
  • Tests/SpeziTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziTests/UITests/TestApp/Info.plist
  • Tests/SpeziTests/UITests/TestApp/Info.plist.license
  • Tests/SpeziTests/UITests/TestApp/LifecycleHandler/LifecycleHandlerTestModule.swift
  • Tests/SpeziTests/UITests/TestApp/ModelTests/ModuleWithModel.swift
  • Tests/SpeziTests/UITests/TestApp/RemoteNotifications/RemoteNotificationsTestView.swift
  • Tests/SpeziTests/UITests/TestAppUITests/Info.plist
  • Tests/SpeziTests/UITests/TestAppUITests/Info.plist.license
  • Tests/SpeziTests/UITests/UITests.xcodeproj/TestApp.xctestplan
  • Tests/SpeziTests/UITests/UITests.xcodeproj/TestApp.xctestplan.license
  • Tests/SpeziTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziTests/UITests/UITests.xcodeproj/project.pbxproj.license
  • Tests/SpeziTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/SpeziViewsTests/UITests/TestApp.xctestplan
  • Tests/SpeziViewsTests/UITests/TestApp.xctestplan.license
  • Tests/SpeziViewsTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/SpeziViewsTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/SpeziViewsTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/SpeziViewsTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/SpeziViewsTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/SpeziViewsTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/SpeziViewsTests/UITests/TestApp/ViewsTests/AdvancedMarkdownViewTest.swift
  • Tests/SpeziViewsTests/UITests/TestApp/ViewsTests/DefaultErrorDescriptionTestView.swift
  • Tests/SpeziViewsTests/UITests/TestAppUITests/SpeziPersonalInfo/PersonalInfoViewsTests.swift
  • Tests/SpeziViewsTests/UITests/TestAppUITests/SpeziValidation/ValidationTests.swift
  • Tests/SpeziViewsTests/UITests/TestAppUITests/SpeziViews/CanvasViewTests.swift
  • Tests/SpeziViewsTests/UITests/TestAppUITests/SpeziViews/ViewsTests+ShareSheet.swift
  • Tests/SpeziViewsTests/UITests/TestAppUITests/XCUIApplication+Targets.swift
  • Tests/SpeziViewsTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/SpeziViewsTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/SpeziViewsTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/SpeziViewsTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/SpeziViewsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/CardinalKitHealthKitToFHIRAdapter.xcscheme.license
  • Tests/SpeziViewsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/SpeziViewsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/TestPlans/RuntimeAssertions.xctestplan
  • Tests/TestPlans/_All-iOS.xctestplan
  • Tests/TestPlans/_All-macOS.xctestplan
  • Tests/TestPlans/_All-watchOS.xctestplan
  • Tests/UITestProjects.toml
  • Tests/XCTHealthKitTests/UITests/TestApp.xctestplan
  • Tests/XCTHealthKitTests/UITests/TestApp.xctestplan.license
  • Tests/XCTHealthKitTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/XCTHealthKitTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/XCTHealthKitTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/XCTHealthKitTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/XCTHealthKitTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/XCTHealthKitTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/XCTHealthKitTests/UITests/TestAppUITests/OtherTests.swift
  • Tests/XCTHealthKitTests/UITests/TestAppUITests/XCTHealthKitTestCase.swift
  • Tests/XCTHealthKitTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/XCTHealthKitTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/XCTHealthKitTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/XCTHealthKitTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/XCTHealthKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/XCTHealthKitTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • Tests/XCTRuntimeAssertionsTests/XCTRuntimeAssertionsTests.swift
  • Tests/XCTRuntimeAssertionsTests/XCTRuntimePreconditionsTests.swift
  • Tests/XCTestExtensionsTests/UITests/TestApp.xctestplan
  • Tests/XCTestExtensionsTests/UITests/TestApp.xctestplan.license
  • Tests/XCTestExtensionsTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json
  • Tests/XCTestExtensionsTests/UITests/TestApp/Assets.xcassets/AccentColor.colorset/Contents.json.license
  • Tests/XCTestExtensionsTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json
  • Tests/XCTestExtensionsTests/UITests/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json.license
  • Tests/XCTestExtensionsTests/UITests/TestApp/Assets.xcassets/Contents.json
  • Tests/XCTestExtensionsTests/UITests/TestApp/Assets.xcassets/Contents.json.license
  • Tests/XCTestExtensionsTests/UITests/UITests.xcodeproj/project.pbxproj
  • Tests/XCTestExtensionsTests/UITests/UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata.license
  • Tests/XCTestExtensionsTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
  • Tests/XCTestExtensionsTests/UITests/UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist.license
  • Tests/XCTestExtensionsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme
  • Tests/XCTestExtensionsTests/UITests/UITests.xcodeproj/xcshareddata/xcschemes/TestApp.xcscheme.license
  • packages.toml

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • Review on demand using usage pricing

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot wasn't able to review this pull request because it exceeds the maximum number of files (300). Try reducing the number of changed files and requesting a review from Copilot again.

Comment thread Sources/GeneratedOpenAIClient/Middleware/RetryMiddleware.swift
…fixBuilds

# Conflicts:
#	Package.swift
#	Sources/SpeziLocation/LocationTasks/LocationTaskManager.swift
#	Sources/XCTRuntimeAssertions/Deprecations.swift
#	Sources/XCTRuntimeAssertions/XCTRuntimePrecondition.swift

@lukaskollmer lukaskollmer left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@lukaskollmer
lukaskollmer merged commit 80845ae into main Jul 16, 2026
428 of 439 checks passed
@lukaskollmer
lukaskollmer deleted the fixBuilds branch July 16, 2026 17:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants