Skip to content

Commit

Permalink
send_kcidb: enable sending os-release tests to KCIDB
Browse files Browse the repository at this point in the history
As per the codec dashboard requirements for tast tests,
start sending `os-release` tests to KCIDB.

Signed-off-by: Jeny Sadadia <[email protected]>
  • Loading branch information
Jeny Sadadia authored and JenySadadia committed Nov 18, 2024
1 parent 463b621 commit 00a34a4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/send_kcidb.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,9 @@ def _get_test_data(self, node, origin,
self.log.info(f"Not sending test as path information is missing: {test_node['id']}")
return

if 'setup' in test_node.get('path'):
# do not send setup tests
path = test_node.get('path')
if 'setup' in path and 'os-release' not in path:
# do not send setup tests except `os-release`
return

parsed_test_node.append(test_node)
Expand Down

0 comments on commit 00a34a4

Please sign in to comment.