Skip to content

Commit

Permalink
Added xcov gem and ignored xcov report folde
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanmakeen committed Oct 5, 2023
1 parent 4aad740 commit 5a47f1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions LocationServices/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ amplifytools.xcconfig
.secret-*
**.sample
#amplify-do-not-edit-end
xcov_output/
1 change: 1 addition & 0 deletions LocationServices/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
source "https://rubygems.org"

gem "fastlane"
gem "xcov"
6 changes: 3 additions & 3 deletions LocationServices/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ platform :ios do
xcov(
project: "LocationServices.xcodeproj",
scheme: "LocationServicesUnitTests",
minimum_coverage_percentage: 75,
# ignore_file_path: "./.xcovignore", # if you want to ignore some files
# output_directory: "xcov_output" # Directory where your coverage report will be stored
minimum_coverage_percentage: 25.0,
ignore_file_path: "./.xcovignore", # if you want to ignore some files
output_directory: "xcov_output" # Directory where your coverage report will be stored
)
end

Expand Down

0 comments on commit 5a47f1c

Please sign in to comment.