Skip to content

Commit

Permalink
chore: Disable S3 concurrent tests on visionOS (#1796)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelkins authored Oct 21, 2024
1 parent 57b74db commit 2d74f14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class S3ConcurrentTests: S3XCTestCase {
public var fileData: Data!
let MEGABYTE: Double = 1_000_000

#if !os(macOS) && !os(iOS) && !os(tvOS)
#if !os(macOS) && !os(iOS) && !os(tvOS) && !os(visionOS)
// Payload below 1,048,576 bytes; sends as simple data payload
func test_20x_1MB_getObject() async throws {
fileData = try generateDummyTextData(numMegabytes: MEGABYTE)
Expand Down

0 comments on commit 2d74f14

Please sign in to comment.