diff options
author | Tom Rini <trini@konsulko.com> | 2025-05-07 17:23:00 -0600 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2025-05-11 12:52:56 +0200 |
commit | 45d325ba0993f60b7b81bae1efde0bc324d49400 (patch) | |
tree | 718271fa4b93c136ba09af2a7134caf86040d319 /doc/develop | |
parent | 9e5624858476dd6c570acb25a6d15b3f8738f076 (diff) |
doc: pytest: Document the test_net test
Add this test to the documentation. While the diff appears large at
first, the only changes within the test are to move the imports to
follow the pydoc comment and then to code-block and indent the example
configuration.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc/develop')
-rw-r--r-- | doc/develop/pytest/index.rst | 1 | ||||
-rw-r--r-- | doc/develop/pytest/test_net.rst | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/doc/develop/pytest/index.rst b/doc/develop/pytest/index.rst index 36083882584..e2131a2f4a6 100644 --- a/doc/develop/pytest/index.rst +++ b/doc/develop/pytest/index.rst @@ -18,4 +18,5 @@ Individual tests :maxdepth: 1 test_000_version + test_net test_net_boot diff --git a/doc/develop/pytest/test_net.rst b/doc/develop/pytest/test_net.rst new file mode 100644 index 00000000000..571179f7b9d --- /dev/null +++ b/doc/develop/pytest/test_net.rst @@ -0,0 +1,8 @@ +test_net +======== + +.. automodule:: test_net + :synopsis: + :member-order: bysource + :members: + :undoc-members: |