Skip to content

Commit 29898f2

Browse files
Jeny SadadiaJenySadadia
Jeny Sadadia
authored andcommitted
src/send_kcidb: don't submit setup test suite nodes
`setup` test suite has been introduced to store test results for environment setup checks before running actual test suite. KCIDB doesn't require `setup` test suite result as long as main test job result is submitted. Signed-off-by: Jeny Sadadia <[email protected]>
1 parent c168e2e commit 29898f2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/send_kcidb.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,11 @@ def _get_test_data(self, node, origin,
377377
if not test_node['path']:
378378
self.log.info(f"Not sending test as path information is missing: {test_node['id']}")
379379
return
380+
381+
if 'setup' in test_node.get('path'):
382+
# do not send setup tests
383+
return
384+
380385
parsed_test_node.append(test_node)
381386
if build_node:
382387
parsed_build_node.append(build_node)

0 commit comments

Comments
 (0)