summaryrefslogtreecommitdiff
path: root/doc/develop
diff options
context:
space:
mode:
authorDavid Lechner <[email protected]>2026-01-05 10:49:14 -0600
committerTom Rini <[email protected]>2026-01-12 15:12:41 -0600
commitc85d302bf2394a9c3fe95e100e014156a2e0faf5 (patch)
tree1cd9e545e0af38d79de82793a675248df300c197 /doc/develop
parent637942ac8e093163742d7b74bf80836c3b950c4e (diff)
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 <[email protected]> Tested-by: Mattijs Korpershoek <[email protected]> # sandbox Reviewed-by: Mattijs Korpershoek <[email protected]> Signed-off-by: David Lechner <[email protected]>
Diffstat (limited to 'doc/develop')
-rw-r--r--doc/develop/pytest/usage.rst4
1 files changed, 4 insertions, 0 deletions
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
---------------