Last active
October 23, 2023 06:57
-
-
Save vraravam/f7ac70f2e89bf87ede5f to your computer and use it in GitHub Desktop.
Simplecov config file (.simplecov)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SimpleCov.minimum_coverage 98.00 | |
SimpleCov.minimum_coverage_by_file 80 | |
SimpleCov.refuse_coverage_drop | |
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter | |
SimpleCov.start :rails do | |
add_group 'Mailers', 'app/mailers' | |
add_group 'Policies', 'app/policies' | |
add_group 'Services', 'app/services' | |
add_group 'Uploaders', 'app/uploaders' | |
add_group 'Validators', 'app/validators' | |
add_filter 'app/admin' | |
add_filter 'app/controllers/about_controller.rb' | |
add_filter 'vendor/' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment