Skip to content

Commit 99455fb

Browse files
committed
exclude changelog from license test
1 parent 8d424b9 commit 99455fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/new_relic/license_test.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ def should_skip?(path)
6969
# skip multiverse auto-generated db/schema
7070
path =~ %r{/test/multiverse/suites/.*/db/schema.rb$} ||
7171
# skip the artifacts directory
72-
path =~ %r{/artifacts/}
72+
path =~ %r{/artifacts/} ||
73+
# skip the changelog
74+
path =~ %r{CHANGELOG.md}
7375
)
7476
end
7577

0 commit comments

Comments
 (0)