summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--Makefile7
2 files changed, 8 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index c9847d632..e9f727a32 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,7 +14,7 @@ install:
- make V=1 install
- make V=1 gecko.driver
- make V=1 node.env
- - local/py3/bin/pip install codecov
+ - make V=1 travis.codecov
script:
- make V=1 themes
- make V=1 test
diff --git a/Makefile b/Makefile
index 65f79ba2c..7d5282802 100644
--- a/Makefile
+++ b/Makefile
@@ -220,4 +220,11 @@ test.clean:
@echo "CLEAN intermediate test stuff"
$(Q)rm -rf geckodriver.log .coverage coverage/
+
+# travis
+# ------
+
+travis.codecov:
+ $(Q)$(PY_ENV_BIN)/python -m pip install codecov
+
.PHONY: $(PHONY)