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 cc7fd22 commit eb3e6d9
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,13 +19,13 @@ class Fastfile: LaneFile {
desc("Run unit tests")
scan(project: .userDefined(project),
scheme: "Mindbox",
forceQuitSimulator: true,
resetSimulator: true,
prelaunchSimulator: true,
forceQuitSimulator: .userDefined(true),
resetSimulator: .userDefined(true),
prelaunchSimulator: .userDefined(true),
onlyTesting: ["MindboxTests"],
includeSimulatorLogs: true,
clean: true,
testWithoutBuilding: false,
includeSimulatorLogs: true,
testWithoutBuilding: .userDefined(false),
disableConcurrentTesting: true,
xcodebuildFormatter: "xcpretty",

Check failure on line 30 in fastlane/Fastfile.swift

View workflow job for this annotation

GitHub Actions / build

argument 'xcodebuildFormatter' must precede argument 'testWithoutBuilding'
xcargs: "CI=true CODE_SIGNING_ALLOWED=NO",
Expand Down

0 comments on commit eb3e6d9

Please sign in to comment.