-
-
Notifications
You must be signed in to change notification settings - Fork 83
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
Make all tests use Swift concurrency #679
Conversation
d10f4b0
to
319a87a
Compare
/* .flatMapErrorThrowing { error in | ||
switch error { | ||
case let error as S3ErrorType: | ||
switch error { | ||
case .bucketAlreadyOwnedByYou: | ||
return | ||
case .bucketAlreadyExists: | ||
// local stack returns bucketAlreadyExists instead of bucketAlreadyOwnedByYou | ||
if !TestEnvironment.isUsingLocalstack { | ||
throw error | ||
} | ||
default: | ||
throw error | ||
} | ||
default: | ||
throw error | ||
} | ||
}*/ |
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.
Does this need to be removed?
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.
removed
Tests/SotoTests/test.swift
Outdated
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.
Might be worth renaming the file to something other than just test
|
||
func testS3VirtualAddressing(_ urlString: String, config: AWSServiceConfig = S3ExtensionTests.s3.config) throws -> String { | ||
/* | ||
func testSelectObjectContent() throws { |
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.
Is this to be brought back in a future PR?
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.
yes
3c60de3
to
14236b0
Compare
No description provided.