Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Info.plist does not need to be part of compiled output #26

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ def self.add_unit_tests_to_xcode_project(proj, scheme_name, config_folder, proje
#
# Add files (fastlane configured UI Unit Tests) into target (via test group)
#
UI.message("Adding Pre-Configured UI Unit Tests (*.plist and *.swift) to Test Group '#{scheme_name}'...")
UI.message("Adding Pre-Configured UI Unit Tests (*.swift) to Test Group '#{scheme_name}'...")

files = []
Dir["#{config_folder}*.plist", "#{config_folder}*.swift"].each do |file| # config_folder ends with / already
Dir["#{config_folder}*.swift"].each do |file| # config_folder ends with / already
UI.message("Adding UI Test Source '#{file}'")
files << test_group.new_reference(File.absolute_path(file), '<absolute>')
end
Expand Down