summaryrefslogtreecommitdiffstats
path: root/python/Makefile
diff options
context:
space:
mode:
authorJohn Snow2021-06-29 23:43:16 +0200
committerJohn Snow2021-07-01 03:54:04 +0200
commit8c95d0fc7f905fb952818e934169a8abcc9a4c56 (patch)
treebaa731b8850c3a0747038383b9d7a96bab41adc7 /python/Makefile
parentpython: rename 'venv-check' target to 'check-pipenv' (diff)
downloadqemu-8c95d0fc7f905fb952818e934169a8abcc9a4c56.tar.gz
qemu-8c95d0fc7f905fb952818e934169a8abcc9a4c56.tar.xz
qemu-8c95d0fc7f905fb952818e934169a8abcc9a4c56.zip
python: update help text for check-tox
Move it up near the check-pipenv help text, and update it to suggest parity. (At the time I first added it, I wasn't sure if I would be keeping it, but I've come to appreciate it as it has actually helped uncover bugs I would not have noticed without it. It should stay.) Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Message-id: 20210629214323.1329806-9-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/Makefile')
-rw-r--r--python/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/python/Makefile b/python/Makefile
index 07ad73ccd0..d2cfa6ad8f 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -9,13 +9,17 @@ help:
@echo " Requires: Python 3.6 and pipenv."
@echo " Hint (Fedora): 'sudo dnf install python3.6 pipenv'"
@echo ""
+ @echo "make check-tox:"
+ @echo " Run tests against multiple python versions."
+ @echo " These tests use the newest dependencies."
+ @echo " Requires: Python 3.6 - 3.10, and tox."
+ @echo " Hint (Fedora): 'sudo dnf install python3-tox python3.10'"
+ @echo ""
@echo "make develop: Install deps for 'make check', and"
@echo " the qemu libs in editable/development mode."
@echo ""
@echo "make check: run linters using the current environment."
@echo ""
- @echo "make check-tox: run linters using multiple python versions."
- @echo ""
@echo "make pipenv"
@echo " Creates pipenv's virtual environment (.venv)"
@echo ""