diff options
author | Thomas Huth <thuth@redhat.com> | 2024-08-30 15:38:01 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-09-04 10:52:29 +0200 |
commit | 5ec1eec11000ef118b2a87c330245ffaa475f5ee (patch) | |
tree | 335aace4bb2264037d6b1e5c70fc121ddff42ff5 | |
parent | b5347978a908adfeb0c01a6e9c87f3f183cbb8a1 (diff) | |
download | qemu-5ec1eec11000ef118b2a87c330245ffaa475f5ee.zip qemu-5ec1eec11000ef118b2a87c330245ffaa475f5ee.tar.gz qemu-5ec1eec11000ef118b2a87c330245ffaa475f5ee.tar.bz2 |
python: Install pycotap in our venv if necessary
The upcoming functional tests will require pycotap for providing
TAP output from the python-based tests. Since we want to be able
to run some of the tests offline by default, too, let's install
it along with meson in our venv if necessary (it's size is only
5 kB, so adding the wheel here should not really be a problem).
The wheel file has been obtained with:
pip download --only-binary :all: --dest . --no-cache pycotap
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20240830133841.142644-8-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | python/wheels/pycotap-1.3.1-py3-none-any.whl | bin | 0 -> 5119 bytes | |||
-rw-r--r-- | pythondeps.toml | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/python/wheels/pycotap-1.3.1-py3-none-any.whl b/python/wheels/pycotap-1.3.1-py3-none-any.whl Binary files differnew file mode 100644 index 0000000..9c2c7d2 --- /dev/null +++ b/python/wheels/pycotap-1.3.1-py3-none-any.whl diff --git a/pythondeps.toml b/pythondeps.toml index 175cf99..0a7f69b 100644 --- a/pythondeps.toml +++ b/pythondeps.toml @@ -20,6 +20,7 @@ [meson] # The install key should match the version in python/wheels/ meson = { accepted = ">=1.1.0", installed = "1.2.3", canary = "meson" } +pycotap = { accepted = ">=1.1.0", installed = "1.3.1" } [docs] # Please keep the installed versions in sync with docs/requirements.txt |