summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Snow2022-05-26 02:09:16 +0200
committerPaolo Bonzini2022-06-06 09:26:54 +0200
commita547c82701925400949856488a2c8c8750a3276e (patch)
tree7fc3fbaed358b628a18064657ddb36bac0f38a02
parenttests: use python3 as the python executable name (diff)
downloadqemu-a547c82701925400949856488a2c8c8750a3276e.tar.gz
qemu-a547c82701925400949856488a2c8c8750a3276e.tar.xz
qemu-a547c82701925400949856488a2c8c8750a3276e.zip
tests: silence pip upgrade warnings during venv creation
Turn off the nag warning coaxing us to upgrade pip. It's not really that interesting to see in CI logs, and as long as nothing is broken -- nothing is broken. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20220526000921.1581503-5-jsnow@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--tests/Makefile.include4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.include b/tests/Makefile.include
index fae2dd0f3c..ba9f5bd65c 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -109,8 +109,8 @@ $(TESTS_VENV_DIR): $(TESTS_VENV_REQ)
$(PYTHON) -m venv $@, \
VENV, $@)
$(call quiet-command, \
- $(TESTS_PYTHON) -m pip -q install -r $(TESTS_VENV_REQ), \
- PIP, $(TESTS_VENV_REQ))
+ $(TESTS_PYTHON) -m pip -q --disable-pip-version-check install \
+ -r $(TESTS_VENV_REQ), PIP, $(TESTS_VENV_REQ))
$(call quiet-command, touch $@)
$(TESTS_RESULTS_DIR):