Skip to content

Commit 035f66c

Browse files
Brian MunkholmMichael Wilkerson-Barker
andauthored
Don't report coverage for test files (#6979)
* Don't report coverage for test files * Updated list of code coverage files * Filter out generated parser files from coverage report * Added code coverage badge to readme file * Added version and license badges --------- Co-authored-by: Michael Wilkerson-Barker <[email protected]>
1 parent e613410 commit 035f66c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<p align="right">
2+
<a href='https://github.com/realm/realm-core/releases'><img src='https://img.shields.io/github/v/release/realm/realm-core' alt='Latest Release' /></a>
3+
<a href='https://coveralls.io/github/realm/realm-core'><img src='https://coveralls.io/repos/github/realm/realm-core/badge.svg' alt='Coverage Status' /></a>
4+
<a href='https://github.com/realm/realm-core'><img src='https://img.shields.io/github/license/realm/realm-core' alt='Source License' /></a>
5+
</p>
6+
17
![Realm](doc/logo.png)
28

39
Realm is a mobile database that runs directly inside phones, tablets or wearables - check out [realm.io](https://realm.io).

evergreen/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -959,8 +959,12 @@ tasks:
959959
--service-flag-name="${coveralls_flag_name}" \
960960
--commit-sha="${github_commit}" \
961961
--vcs-branch="${branch_name}" \
962+
--ignore='build/_deps/**' \
963+
--ignore='build/external/**' \
962964
--ignore='external/**' \
963965
--ignore='src/external/**' \
966+
--ignore='src/realm/parser/generated/**' \
967+
--ignore='test/large_tests/**' \
964968
--parallel \
965969
--output-path=coveralls_${task_name}.json
966970

0 commit comments

Comments
 (0)