-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #303 from InVisionApp/nrf/convert-to-codecov
patch: migrate coverage from codeclimate to codecov
- Loading branch information
Showing
8 changed files
with
240 additions
and
79 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
# update immediately because github agents aren't updated very often | ||
sudo apt-get update | ||
# Quiets the warnings after each apt-get | ||
sudo apt autoremove | ||
# Code climate reporter | ||
sudo curl -L -o /usr/local/bin/cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 | ||
sudo chmod +x /usr/local/bin/cc-test-reporter | ||
sudo apt autoremove |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# see https://docs.codecov.io/docs/codecovyml-reference for spec | ||
codecov: | ||
notify: | ||
require_ci_to_pass: true | ||
comment: | ||
layout: 'header, diff, tree' | ||
require_changes: false | ||
branches: null | ||
behavior: default | ||
flags: null | ||
paths: null | ||
coverage: | ||
precision: 2 | ||
range: | ||
- 95.0 | ||
- 100.0 | ||
round: down | ||
status: | ||
changes: false | ||
patch: true | ||
project: true | ||
ignore: | ||
- 'dist/' | ||
- '**/node_modules/' | ||
- '**/__tests/' | ||
- '__mocks__/' |
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
Oops, something went wrong.