Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
justSmK committed Nov 21, 2024
1 parent 76f8834 commit c95d0d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fastlane/Fastfile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ class Fastfile: LaneFile {
desc("Run unit tests")
scan(project: .userDefined(project),
scheme: "Mindbox",
clean: true,
testWithoutBuilding: .userDefined(false),
forceQuitSimulator: .userDefined(true),

Check failure on line 24 in fastlane/Fastfile.swift

View workflow job for this annotation

GitHub Actions / build

argument 'forceQuitSimulator' must precede argument 'clean'
resetSimulator: .userDefined(true),
prelaunchSimulator: .userDefined(true),
onlyTesting: ["MindboxTests"],
destination: "platform=iOS Simulator,name=iPhone SE (3rd generation),OS=18.1",
clean: true,
xcodebuildFormatter: "xcpretty",
disableConcurrentTesting: true,
testWithoutBuilding: .userDefined(false),
includeSimulatorLogs: true,
xcodebuildFormatter: "xcpretty",
xcargs: "CI=true CODE_SIGNING_ALLOWED=NO",
includeSimulatorLogs: true
destination: "platform=iOS Simulator,name=iPhone SE (3rd generation),OS=18.1"
)
}
}

0 comments on commit c95d0d4

Please sign in to comment.