Skip to content

Commit 2e309d0

Browse files
committed
Expose codecov flags
1 parent 5fbdcd2 commit 2e309d0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ CAT_FLAGS ?=
88
# Define the path to the Codecov executable:
99
CODECOV ?= $(BIN_DIR)/codecov
1010

11+
# Define the command-line options to be used when reporting coverage statistics:
12+
CODECOV_FLAGS ?=
13+
1114

1215
# TARGETS #
1316

@@ -22,6 +25,6 @@ CODECOV ?= $(BIN_DIR)/codecov
2225

2326
coverage-codecov:
2427
$(QUIET) $(NPM) install codecov
25-
$(QUIET) $(CAT) $(CAT_FLAGS) $(LCOV_INFO) | $(CODECOV)
28+
$(QUIET) $(CAT) $(CAT_FLAGS) $(LCOV_INFO) | $(CODECOV) $(CODECOV_FLAGS)
2629

2730
.PHONY: coverage-codecov

0 commit comments

Comments
 (0)