summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2020-04-01 11:57:48 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2020-04-01 11:57:48 +0200
commit3bbcfe6ab3513315f2491160355ea671726d5b69 (patch)
tree28d0df34140ff58a00f4731414c93d3fe6de19fe
parentd599bdff0d63e1b21946389c690287ee896c267f (diff)
travis: make travis build more verbose
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-rw-r--r--utils/makefile.python8
1 files changed, 5 insertions, 3 deletions
diff --git a/utils/makefile.python b/utils/makefile.python
index b0f1c247a..2e488bf2b 100644
--- a/utils/makefile.python
+++ b/utils/makefile.python
@@ -124,10 +124,12 @@ quiet_cmd_pyenvuninstall = PYENV uninstall $2
quiet_cmd_virtualenv = PYENV usage: $ source ./$@/bin/activate
cmd_virtualenv = \
if [ ! -d "$(PY_ENV)" ];then \
+ echo "PYENV create virtualenv $2"; \
$(PYTHON) -m venv $(VTENV_OPTS) $2; \
else \
echo "PYENV using virtualenv from $2"; \
- fi
+ fi; \
+ echo "commands available at $(PY_ENV_BIN):"; ls $(PY_ENV_BIN) | $(FMT) ;
# $2 path to lint
quiet_cmd_pylint = LINT $@
@@ -205,8 +207,8 @@ pyclean:
pyenv: $(PY_ENV)
$(PY_ENV): python-exe
$(call cmd,virtualenv,$(PY_ENV))
- @$(PY_ENV_BIN)/pip install $(PIP_VERBOSE) -U wheel pip setuptools
- @$(PY_ENV_BIN)/pip install $(PIP_VERBOSE) -r requirements.txt
+ $(Q)$(PY_ENV_BIN)/python -m pip install $(PIP_VERBOSE) -U pip wheel pip setuptools
+ $(Q)$(PY_ENV_BIN)/python -m pip install $(PIP_VERBOSE) -r requirements.txt
PHONY += pylint-exe
pylint-exe: $(PY_ENV)