[1/1] testsuite: speedup dtb deploy tests by installing less packages

Message ID 20260410145809.4032432-1-felix.moessbauer@siemens.com
State Under Review
Headers show
Series [1/1] testsuite: speedup dtb deploy tests by installing less packages | expand

Commit Message

Felix Moessbauer April 10, 2026, 2:58 p.m. UTC
There is no value in building all our default packages just to check if
the dtbs are deployed correctly. By setting the image_install to an
empty string, we only build the bare minimum required for the test.

This change cuts the test execution time in half.

Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
 testsuite/citest.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Patch

diff --git a/testsuite/citest.py b/testsuite/citest.py
index 3eea07e5..fc6ec24c 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -697,7 +697,7 @@  class DtbDeployTest(CIBaseTest):
         ]
 
         self.init()
-        self.perform_build_test(targets)
+        self.perform_build_test(targets, image_install='')
 
     def test_dtb_deploy_images(self):
         """
@@ -709,7 +709,7 @@  class DtbDeployTest(CIBaseTest):
         ]
 
         self.init()
-        self.perform_build_test(targets)
+        self.perform_build_test(targets, image_install='')
 
 
 class NoCrossTest(CIBaseTest):