Skip to content

Commit

Permalink
Add db/ to default excludes (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
grodowski committed Dec 15, 2024
1 parent 258e345 commit fe3fca2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/undercover/options.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Options # rubocop:disable Metrics/ClassLength
].freeze

DEFAULT_FILE_INCLUDE_GLOBS = %w[*.rb *.rake *.ru Rakefile].freeze
DEFAULT_FILE_EXCLUDE_GLOBS = %w[test/* spec/* *_test.rb *_spec.rb].freeze
DEFAULT_FILE_EXCLUDE_GLOBS = %w[test/* spec/* db/* *_test.rb *_spec.rb].freeze

attr_accessor :lcov,
:path,
Expand Down
2 changes: 1 addition & 1 deletion lib/undercover/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Undercover
VERSION = '0.6.1'
VERSION = '0.6.2'
end

Check warning on line 5 in lib/undercover/version.rb

View check run for this annotation

UndercoverCI / coverage

Untested module

Module `Undercover` is missing coverage for line (node coverage: 0.0).
Raw output
3: module Undercover hits: n/a
4:   VERSION = '0.6.2' hits: n/a
5: end hits: n/a

0 comments on commit fe3fca2

Please sign in to comment.