-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: adding vision os preview #3898
Conversation
60c5e48
to
b4e939d
Compare
@@ -91,21 +94,6 @@ class AWSPinpointAnalyticsPluginIntergrationTests: XCTestCase { | |||
try await endpointClient.updateEndpointProfile(with: currentProfile) | |||
} | |||
|
|||
/// Run this test when the number of endpoints for the userId exceeds the limit. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add this back to save our future selves some head scratching :P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is for some reason actually failing the build for the target on the runner. Thats why I removed it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added it back commented with a TODO.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is indeed very weird, since this is not really a test but just a method 🤷♂️
AmplifyPlugins/Auth/Sources/AWSCognitoAuthPlugin/Actions/SignOut/ShowHostedUISignOut.swift
Outdated
Show resolved
Hide resolved
AmplifyPlugins/Auth/Sources/AWSCognitoAuthPlugin/Actions/SignOut/ShowHostedUISignOut.swift
Outdated
Show resolved
Hide resolved
...fyPlugins/Auth/Sources/AWSCognitoAuthPlugin/StateMachine/CodeGen/Data/SignOutEventData.swift
Outdated
Show resolved
Hide resolved
...sts/AWSDataStorePluginTests/Sync/MutationQueue/MutationIngesterConflictResolutionTests.swift
Outdated
Show resolved
Hide resolved
@@ -53,6 +53,11 @@ class CoreMLNaturalLanguageAdapterTests: XCTestCase { | |||
/// - I should get back correct tokens | |||
/// | |||
func testSyntaxToken() { | |||
#if !os(visionOS) | |||
// TODO: Test failing on visionOS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIRC the CoreML tests are failing in all platforms, that's why they are not being run by the unit tests workflow. See #3655
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we fix the tests or keep the TODO for future?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We couldn't really fix the tests because it was Xcode 15 on simulators that was broken.
If the same issue remains in Xcode 16, I think we're on the same situation as before.
Co-authored-by: Sebastian Villena <[email protected]>
…lify-ios into visionos-preview-rebased
Issue #
Rebased
visionos-preview
branch withmain
.Based on customer feedback, we have decided to pushvisionos-preview
onmain
.Please note that VisionOS support is still in preview, we are just making this merge to make it more accessible to customers by pushing it into our release pipelines. This way customers using Amplify on VisionOS would get other updates that are made on
main
.Description
General Checklist
Given When Then
inline code documentation and are named accordinglytestThing_condition_expectation()
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.