We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a09d978 commit db4d9edCopy full SHA for db4d9ed
tools/make/lib/coverage-service/codecov.mk
@@ -1,11 +1,15 @@
1
2
# VARIABLES #
3
4
-# Define the path to the [Codecov][1] executable.
+# Define the [Codecov][1] executable.
5
#
6
# [1]: https://github.com/codecov/codecov-bash
7
-
8
-CODECOV ?= bash <(curl -s https://codecov.io/bash)
+# [2]: https://github.com/codecov/codecov-python
+ifeq ($(OS), WINNT)
9
+ CODECOV ?= pip install --user codecov && codecov
10
+else
11
+ CODECOV ?= bash <(curl -s https://codecov.io/bash)
12
+endif
13
14
# Define the command-line options to be used when reporting coverage statistics:
15
CODECOV_FLAGS ?= \
0 commit comments