File tree Expand file tree Collapse file tree 1 file changed +14
-9
lines changed
tools/make/lib/coverage-service Expand file tree Collapse file tree 1 file changed +14
-9
lines changed Original file line number Diff line number Diff line change 11
22# VARIABLES #
33
4- # Define the [Codecov][1] executable .
4+ # Define the [Codecov][1] command (see [2][2] and [3][3]) .
55#
6- # [1]: https://github.com/codecov/codecov-bash
7- # [2]: https://github.com/codecov/codecov-python
6+ # [1]: https://codecov.io/
7+ # [2]: https://github.com/codecov/codecov-bash
8+ # [3]: https://github.com/codecov/codecov-python
89ifeq ($(OS ) , WINNT)
910 CODECOV ?= pip install --user codecov && codecov
1011else
@@ -27,15 +28,19 @@ endif
2728
2829# TARGETS #
2930
30- # Report coverage statistics.
31- #
32- # This target sends coverage statistics to [Codecov][1].
31+ # /
32+ # Sends coverage statistics to [Codecov][1].
3333#
3434# [1]: https://codecov.io/
35-
35+ #
36+ # @param {string} LCOV_INFO - path of the `lcov.info` file which will be sent to the coverage service
37+ # @param {string} [CI_SERVICE] - continuous integration (CI) service from which the coverage report originates
38+ # @param {string} [COVERAGE_NAME] - coverage report name
39+ #
40+ # @example
41+ # make coverage-codecov
42+ # /
3643coverage-codecov :
3744 $(QUIET ) $(CODECOV ) $(CODECOV_FLAGS ) || echo ' Failed to upload coverage reports to Codecov.'
3845
3946.PHONY : coverage-codecov
40-
41-
You can’t perform that action at this time.
0 commit comments