Add sphinx docs folder and changelog URLs to metadata (#751)

This commit is contained in:
Bruno Oliveira
2022-01-29 13:29:36 -03:00
committed by GitHub
parent 1a5ad8ac20
commit 8cd10225df
14 changed files with 615 additions and 521 deletions

16
docs/subprocess.rst Normal file
View File

@@ -0,0 +1,16 @@
Running tests in a Python subprocess
====================================
To instantiate a ``python3.9`` subprocess and send tests to it, you may type::
pytest -d --tx popen//python=python3.9
This will start a subprocess which is run with the ``python3.9``
Python interpreter, found in your system binary lookup path.
If you prefix the --tx option value like this::
--tx 3*popen//python=python3.9
then three subprocesses would be created and tests
will be load-balanced across these three processes.