update sim version to 26.4.1 (#5479)

This commit is contained in:
Mauro
2026-04-24 11:59:15 +02:00
committed by GitHub
parent d304475ee9
commit 5fa8f24c04
5 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ struct AccessibilityTests: AsyncParsableCommand {
var device = "iPhone 17"
@Option(help: "iOS version for the simulator.")
var osVersion = "26.4"
var osVersion = "26.4.1"
func run() async throws {
var testsFailed = false

View File

@@ -13,7 +13,7 @@ struct IntegrationTests: AsyncParsableCommand {
var device = "iPhone 17"
@Option(help: "iOS version for the simulator.")
var osVersion = "26.4"
var osVersion = "26.4.1"
func run() async throws {
// Delete old log files

View File

@@ -6,7 +6,7 @@ struct PreviewTests: AsyncParsableCommand {
abstract: "Runs the preview test CI workflow, with optional snapshot recording.")
@Option(help: "iOS version for the simulator.")
var osVersion = "26.4"
var osVersion = "26.4.1"
@Flag(help: "Re-record snapshots for tests that fail or are missing a reference image.")
var record = false

View File

@@ -20,7 +20,7 @@ struct UITests: AsyncParsableCommand {
var deviceType: DeviceType
@Option(help: "iOS version for the simulator.")
var osVersion = "26.4"
var osVersion = "26.4.1"
@Option(help: "Run only a specific test (format: 'ClassName/testName').")
var testName: String?

View File

@@ -9,7 +9,7 @@ struct UnitTests: AsyncParsableCommand {
var device = "iPhone 17"
@Option(help: "iOS version for the simulator.")
var osVersion = "26.4"
var osVersion = "26.4.1"
@Flag(help: "Skip preview tests")
var skipPreviews = false