We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fbdcd2 commit 2e309d0Copy full SHA for 2e309d0
tools/make/lib/coverage-service/codecov.mk
@@ -8,6 +8,9 @@ CAT_FLAGS ?=
8
# Define the path to the Codecov executable:
9
CODECOV ?= $(BIN_DIR)/codecov
10
11
+# Define the command-line options to be used when reporting coverage statistics:
12
+CODECOV_FLAGS ?=
13
+
14
15
# TARGETS #
16
@@ -22,6 +25,6 @@ CODECOV ?= $(BIN_DIR)/codecov
22
25
23
26
coverage-codecov:
24
27
$(QUIET) $(NPM) install codecov
- $(QUIET) $(CAT) $(CAT_FLAGS) $(LCOV_INFO) | $(CODECOV)
28
+ $(QUIET) $(CAT) $(CAT_FLAGS) $(LCOV_INFO) | $(CODECOV) $(CODECOV_FLAGS)
29
30
.PHONY: coverage-codecov
0 commit comments