diff --git a/docs/releases.rst b/docs/releases.rst index eb873c1a2d..3c2cb0e4de 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -57,6 +57,10 @@ The ``tmt try`` command now supports the new new :ref:`/stories/cli/try/option/install` option backed by the :ref:`prepare/feature` plugin. +The :ref:`/plugins/report/reportportal` plugin now uploads the +complete set of discovered tests, including those which have not +been executed. These tests are marked as ``skipped``. + tmt-1.36.1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/tmt/steps/execute/__init__.py b/tmt/steps/execute/__init__.py index f2a8945fb2..e007bf331a 100644 --- a/tmt/steps/execute/__init__.py +++ b/tmt/steps/execute/__init__.py @@ -1170,8 +1170,10 @@ def results(self) -> list["tmt.result.Result"]: """ return self._results - def results_for_tests(self, tests: list['tmt.base.Test']) \ - -> list[tuple[Optional[Result], Optional['tmt.base.Test']]]: + def results_for_tests( + self, + tests: list['tmt.base.Test'] + ) -> list[tuple[Optional[Result], Optional['tmt.base.Test']]]: """ Collect results and corresponding tests.