diff --git a/britney.py b/britney.py index 22ffbbd..becd35c 100755 --- a/britney.py +++ b/britney.py @@ -1973,14 +1973,16 @@ class Britney(object): "%s" % (excuse.name, excuse.ver[1], forces[0].user)) continue - # Block promotion if any boottests attempt has failed or - # still in progress. + # Block promotion if the excuse is still valid (adt tests + # passed) but the boottests attempt has failed or still in + # progress. if status not in BootTest.VALID_STATUSES: - excuse.addhtml("Not considered") excuse.addreason("boottest") - excuse.is_valid = False - upgrade_me.remove(excuse.name) - unconsidered.append(excuse.name) + if excuse.is_valid: + excuse.is_valid = False + excuse.addhtml("Not considered") + upgrade_me.remove(excuse.name) + unconsidered.append(excuse.name) # invalidate impossible excuses for e in self.excuses: diff --git a/tests/test_boottest.py b/tests/test_boottest.py index 77be561..d001e96 100644 --- a/tests/test_boottest.py +++ b/tests/test_boottest.py @@ -129,6 +129,9 @@ class TestBoottestEnd2End(TestBase): # Disable autopkgtests. new_config = original_config.replace( 'ADT_ENABLE = yes', 'ADT_ENABLE = no') + # Enable boottest. + new_config = new_config.replace( + 'BOOTTEST_ENABLE = no', 'BOOTTEST_ENABLE = yes') # Disable TouchManifest auto-fetching. new_config = new_config.replace( 'BOOTTEST_FETCH = yes', 'BOOTTEST_FETCH = no') @@ -151,7 +154,8 @@ class TestBoottestEnd2End(TestBase): self.create_manifest([ 'green 1.0', 'pyqt5:armhf 1.0', - 'signon 1.0' + 'signon 1.0', + 'purple 1.1', ]) def create_manifest(self, lines): @@ -165,7 +169,8 @@ class TestBoottestEnd2End(TestBase): """Create a stub version of boottest-britney script.""" script_path = os.path.expanduser( "~/auto-package-testing/jenkins/boottest-britney") - os.makedirs(os.path.dirname(script_path)) + if not os.path.exists(os.path.dirname(script_path)): + os.makedirs(os.path.dirname(script_path)) with open(script_path, 'w') as f: f.write('''#!%(py)s import argparse @@ -178,6 +183,7 @@ green 1.1~beta RUNNING pyqt5-src 1.1~beta PASS pyqt5-src 1.1 FAIL signon 1.1 PASS +purple 1.1 RUNNING """ def request(): @@ -405,6 +411,43 @@ args.func() r'