Skip to content

Commit

Permalink
♻️ Lexically order filters in .simplecov
Browse files Browse the repository at this point in the history
  • Loading branch information
jcroteau committed Oct 15, 2024
1 parent 7ea79db commit b27bdd7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .simplecov
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
if ENV["RAILS_ENV"] == "test"
SimpleCov.start do
add_filter "app/controllers/errors_controller.rb"
add_filter "app/services/test_data_service.rb"
add_filter "config/environments/test.rb"
add_filter "config/initializers"
add_filter "lib/fakes"
add_filter "lib/generators"
add_filter "spec/support"
add_filter "spec/rails_helper.rb"
add_filter "spec/spec_helper.rb"
add_filter "config/initializers"
add_filter "config/environments/test.rb"
add_filter "lib/tasks"
add_filter "app/controllers/errors_controller.rb"
add_filter "spec/factories"
add_filter "spec/"
add_filter "spec/factories"
add_filter "spec/rails_helper.rb"
add_filter "spec/spec_helper.rb"
add_filter "spec/support"
end
SimpleCov.coverage_dir ENV["COVERAGE_DIR"] || nil
SimpleCov.command_name ENV["TEST_SUBCATEGORY"] || "all"
Expand Down

0 comments on commit b27bdd7

Please sign in to comment.