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.mo...@siemens.com>
---
testsuite/citest.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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):
--
2.53.0