From: David Lechner Date: Mon, 5 Jan 2026 16:49:14 +0000 (-0600) Subject: doc: pytest: mention additional requirements for venv X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c85d302bf2394a9c3fe95e100e014156a2e0faf5;p=thirdparty%2Fu-boot.git doc: pytest: mention additional requirements for venv Add a paragraph explaining that in addition to the requirements.txt for test/py/test.py itself, users may need to install additional python packages depending on the U-Boot configuration being built. Reviewed-by: Simon Glass Tested-by: Mattijs Korpershoek # sandbox Reviewed-by: Mattijs Korpershoek Signed-off-by: David Lechner --- diff --git a/doc/develop/pytest/usage.rst b/doc/develop/pytest/usage.rst index df3821da20d..f8b32c07edd 100644 --- a/doc/develop/pytest/usage.rst +++ b/doc/develop/pytest/usage.rst @@ -90,6 +90,10 @@ environment. This can be done via the following commands: $ . ./venv/bin/activate $ pip install -r test/py/requirements.txt +In order to use the ``--build`` option of ``test.py`` there may be additional +python packages required depending on the configuration being built. These can +be found with ``find . -name "*.requirements*.txt"``. + Testing sandbox ---------------