diff --git a/avocado/core/runner.py b/avocado/core/runner.py index db23e03d5c19e2009e3cdcd36ed283e4e0750183..0d2d2ddc52d46c223d053e05da88918c21c4c08c 100644 --- a/avocado/core/runner.py +++ b/avocado/core/runner.py @@ -177,6 +177,11 @@ class TestRunner(object): """ Run a test instance. + This code is the first thing that runs inside a new process, known here + as the test process. It communicates to the test runner by using + :param:`queue`. It's important that this early state is given to the + test runner in a reliable way. + :param test_factory: Test factory (test class and parameters). :type test_factory: tuple of :class:`avocado.core.test.Test` and dict. :param queue: Multiprocess queue.