RPi related build issues like one fixed in 55e8b2aa have not been
reproduced for a long time, so the targets look stable enough to
remove CI protection from the tests.
Signed-off-by: Uladzimir Bely <
ub...@ilbers.de>
---
testsuite/citest.py | 15 +++------------
1 file changed, 3 insertions(+), 12 deletions(-)
diff --git a/testsuite/citest.py b/testsuite/citest.py
index ee965278..47f49263 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -175,10 +175,7 @@ class CrossTest(CIBaseTest):
]
self.init()
- try:
- self.perform_build_test(targets)
- except exceptions.TestFail:
- self.cancel('KFAIL')
+ self.perform_build_test(targets)
class WicTest(CIBaseTest):
@@ -271,10 +268,7 @@ class NoCrossTest(CIBaseTest):
]
self.init()
- try:
- self.perform_build_test(targets, cross=False)
- except exceptions.TestFail:
- self.cancel('KFAIL')
+ self.perform_build_test(targets, cross=False)
def test_nocross_rpi_debsrc(self):
targets = [
@@ -284,10 +278,7 @@ class NoCrossTest(CIBaseTest):
]
self.init()
- try:
- self.perform_build_test(targets, cross=False, debsrc_cache=True)
- except exceptions.TestFail:
- self.cancel('KFAIL')
+ self.perform_build_test(targets, cross=False, debsrc_cache=True)
def test_nocross_trixie(self):
targets = [
--
2.45.3