Skip to content

Commit

Permalink
chore: Disable S3 concurrent integration tests on Apple platforms (#1794
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jbelkins authored Oct 18, 2024
1 parent 33bad12 commit 8ee495d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class S3ConcurrentTests: S3XCTestCase {
public var fileData: Data!
let MEGABYTE: Double = 1_000_000

#if !os(macOS) && !os(iOS) && !os(tvOS)
// Payload below 1,048,576 bytes; sends as simple data payload
func test_20x_1MB_getObject() async throws {
fileData = try generateDummyTextData(numMegabytes: MEGABYTE)
Expand All @@ -27,6 +28,7 @@ class S3ConcurrentTests: S3XCTestCase {
fileData = try generateDummyTextData(numMegabytes: MEGABYTE * 1.5)
try await repeatConcurrentlyWithArgs(count: 20, test: getObject, args: fileData!)
}
#endif

/* Helper functions */

Expand Down

0 comments on commit 8ee495d

Please sign in to comment.