Skip to content

Commit e700b43

Browse files
committed
Reformat comment based on JSDoc
1 parent 95280d4 commit e700b43

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

tools/make/lib/coverage-service/codecov.mk

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
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
89
ifeq ($(OS), WINNT)
910
CODECOV ?= pip install --user codecov && codecov
1011
else
@@ -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+
#/
3643
coverage-codecov:
3744
$(QUIET) $(CODECOV) $(CODECOV_FLAGS) || echo 'Failed to upload coverage reports to Codecov.'
3845

3946
.PHONY: coverage-codecov
40-
41-

0 commit comments

Comments
 (0)