doc: Adding exit code for pytest usage examples (#8790) (#8800)

* doc: Adding exit code for pytest usage examples (#8790)

Fix #8790 

Co-authored-by: Bruno Oliveira <nicoddemus@gmail.com>
Co-authored-by: Sripradha Karkala <sripradha.karkala@nutanix.com>
This commit is contained in:
Srip 2021-06-27 06:29:16 -07:00 committed by GitHub
parent ef395e1c38
commit 6573107b97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -168,15 +168,15 @@ You can invoke ``pytest`` from Python code directly:
.. code-block:: python
pytest.main()
retcode = pytest.main()
this acts as if you would call "pytest" from the command line.
It will not raise ``SystemExit`` but return the exitcode instead.
It will not raise :class:`SystemExit` but return the :ref:`exit code <exit-codes>` instead.
You can pass in options and arguments:
.. code-block:: python
pytest.main(["-x", "mytestdir"])
retcode = pytest.main(["-x", "mytestdir"])
You can specify additional plugins to ``pytest.main``:
@ -191,7 +191,8 @@ You can specify additional plugins to ``pytest.main``:
print("*** test run reporting finishing")
pytest.main(["-qq"], plugins=[MyPlugin()])
if __name__ == "__main__":
sys.exit(pytest.main(["-qq"], plugins=[MyPlugin()]))
Running it will show that ``MyPlugin`` was added and its
hook was invoked: