Skip to content

Commit 32c4629

Browse files
committed
fix(ci): disable code signing for tests on CI
1 parent 98cba00 commit 32c4629

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

fastlane/Fastfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ platform :mac do
1515

1616
desc "Runs all the tests"
1717
lane :test do
18-
run_tests(project: "Monolingual.xcodeproj", scheme: "Monolingual")
18+
run_tests(
19+
project: "Monolingual.xcodeproj",
20+
scheme: "Monolingual",
21+
code_signing_identity: "-",
22+
xcargs: "CODE_SIGNING_REQUIRED=NO CODE_SIGN_STYLE=Manual"
23+
)
1924
end
2025

2126
desc "Build a new beta version with debug information"

0 commit comments

Comments
 (0)