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 f59bc68 commit 2a030dd
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 @@ -66,6 +66,10 @@ The :ref:`/plugins/provision/beaker` provision plugin now newly
supports providing a custom :ref:`/spec/plans/provision/kickstart`
configuration.

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 2a030dd

Please sign in to comment.