If we replace the code Setup method, we don't get the cleanup it performs and this just resulted in failures on the autobuilder due to a stale config fragment. Setup will call SetupLocal so this should be a safe and easy fix to resolve the autobuilder failures.
Signed-off-by: Richard Purdie <[email protected]> --- meta/lib/oeqa/selftest/wic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 9425dc0..0a35935 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py @@ -46,7 +46,7 @@ class Wic(oeSelfTest): 'dosfstools-native mtools-native') Wic.image_is_ready = False - def setUp(self): + def setUpLocal(self): """This code is executed before each test method.""" if not Wic.image_is_ready: # build core-image-minimal with required features -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
