From de539add0198fe549aa424f7c18ae7965bf60a7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Tue, 6 Sep 2016 09:18:42 +0200 Subject: [PATCH] avocado.core.job: Remove outdated docstring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `run` does not accept arguments anymore but stores them in `self`. Let's get rid of the outdated docstring. Signed-off-by: Lukáš Doktor --- avocado/core/job.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/avocado/core/job.py b/avocado/core/job.py index be2a0df2..2190b423 100644 --- a/avocado/core/job.py +++ b/avocado/core/job.py @@ -520,15 +520,6 @@ class Job(object): """ Handled main job method. Runs a list of test URLs to its completion. - Note that the behavior is as follows: - - * If urls is provided alone, just make a simple list with no specific - params (all tests use default params). - * If urls and multiplex_files are provided, multiplex provides params - and variants to all tests it can. - * If multiplex_files are provided alone, just use the matrix produced - by the file - The test runner figures out which tests need to be run on an empty urls list by assuming the first component of the shortname is the test url. -- GitLab