diff --git a/britney.conf b/britney.conf index 8d9b285..da4d62c 100644 --- a/britney.conf +++ b/britney.conf @@ -66,7 +66,7 @@ ADT_ENABLE = yes ADT_DEBUG = no ADT_ARCHES = amd64 i386 -BOOTTEST_ENABLE = yes +BOOTTEST_ENABLE = no BOOTTEST_DEBUG = yes BOOTTEST_ARCHES = armhf amd64 BOOTTEST_FETCH = yes diff --git a/tests/test_boottest.py b/tests/test_boottest.py index ce1cb09..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')