diff options
author | John Snow <jsnow@redhat.com> | 2023-05-10 23:54:27 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-05-18 08:53:51 +0200 |
commit | 9c6692db550f739a84fe4b677428df09d9fafdc3 (patch) | |
tree | 1af3f0dfd3f396b2c8977617160d8ad4d355d561 /tests/requirements.txt | |
parent | aab95127565cea74672c291566c7bcaec601e756 (diff) | |
download | qemu-9c6692db550f739a84fe4b677428df09d9fafdc3.zip qemu-9c6692db550f739a84fe4b677428df09d9fafdc3.tar.gz qemu-9c6692db550f739a84fe4b677428df09d9fafdc3.tar.bz2 |
tests: Use configure-provided pyvenv for tests
This patch changes how the avocado tests are provided, ever so
slightly. Instead of creating a new testing venv, use the
configure-provided 'pyvenv' instead, and install optional packages into
that.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20230511035435.734312-20-jsnow@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/requirements.txt')
-rw-r--r-- | tests/requirements.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/requirements.txt b/tests/requirements.txt index a6f73da..0e008b9 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,6 +1,9 @@ # Add Python module requirements, one per line, to be installed -# in the tests/venv Python virtual environment. For more info, +# in the qemu build_dir/pyvenv Python virtual environment. For more info, # refer to: https://pip.pypa.io/en/stable/user_guide/#id1 -# Note that qemu.git/python/ is always implicitly installed. +# +# Note that qemu.git/python/ is implicitly installed to this venv when +# 'make check-venv' is run, and will persist until configure is run +# again. avocado-framework==101.0 pycdlib==1.11.0 |