At some point the modules in tests/cases/loader/invalid/ were removed, this test relied on having tests/cases/loader/invalid/oetag.py to trigger a ImportError in the loader module. Skip this test.
Signed-off-by: Nathan Rossi <[email protected]> --- Changes in v2: - New --- meta/lib/oeqa/core/tests/test_loader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/lib/oeqa/core/tests/test_loader.py b/meta/lib/oeqa/core/tests/test_loader.py index 519ba96091..e73c91b141 100755 --- a/meta/lib/oeqa/core/tests/test_loader.py +++ b/meta/lib/oeqa/core/tests/test_loader.py @@ -40,6 +40,7 @@ class TestLoader(TestBase): result = True if expect in str(e) else False self.assertTrue(result, msg=msg) + @unittest.skip("invalid directory is missing oetag.py") def test_fail_duplicated_module(self): cases_path = self.cases_path invalid_path = os.path.join(cases_path, 'loader', 'invalid') --- 2.23.0.rc1 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
