From ab7aba7b0dc487364fb1396f92fc9e8a75d7fc4e Mon Sep 17 00:00:00 2001 From: Natalia Rybchenko Date: Mon, 15 Jun 2026 19:57:29 +0300 Subject: [PATCH] results: clarify execution sequence number parameter description Clarify the execution sequence number parameter description across all service methods where it is used to better explain its purpose and behaviour. Signed-off-by: Natalia Rybchenko --- bublik/core/result/services.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bublik/core/result/services.py b/bublik/core/result/services.py index 5df19a45..73d5404b 100644 --- a/bublik/core/result/services.py +++ b/bublik/core/result/services.py @@ -117,9 +117,9 @@ def list_results( Args: parent_id: Filter by parent package ID test_name: Filter by test name - start_exec_seqno: Retain only the consecutive sequence of results - starting from the specified execution number, based on the global - run sequence + start_exec_seqno: Position in the global run execution sequence to start + from. Ensures that when the same test is executed multiple times within + one parent package, only iterations of the intended execution are returned results: Comma-separated result statuses result_properties: Comma-separated result properties requirements: Comma-separated requirement names @@ -242,9 +242,9 @@ def list_results_paginated( Args: parent_id: Filter by parent package ID test_name: Filter by test name - start_exec_seqno: Retain only the consecutive sequence of results - starting from the specified execution number, based on the global - run sequence + start_exec_seqno: Position in the global run execution sequence to start + from. Ensures that when the same test is executed multiple times within + one parent package, only iterations of the intended execution are returned results: Comma-separated result statuses result_properties: Comma-separated result properties requirements: Comma-separated requirement names