Skip to content

Commit

Permalink
Add a short release note
Browse files Browse the repository at this point in the history
Plus a minor style adjustment.
  • Loading branch information
psss committed Oct 1, 2024
1 parent af019ea commit 469c1bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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</plugins/prepare/install>` 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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
6 changes: 4 additions & 2 deletions tmt/steps/execute/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 469c1bb

Please sign in to comment.