Skip to content

Commit

Permalink
Added workaround for failing tests
Browse files Browse the repository at this point in the history
# Conflicts:
#	Gemfile.lock
  • Loading branch information
brototyp committed Sep 6, 2024
1 parent 982ebe9 commit 61003ea
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,16 @@ target 'MatomoTrackerTests' do
pod 'Quick', '~> 7.0'
pod 'Nimble', '~> 12.0'
end

# https://github.com/CocoaPods/CocoaPods/issues/11402
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|

# disable code signing for pods
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end

0 comments on commit 61003ea

Please sign in to comment.