From: Ross Burton Date: Thu, 23 May 2013 11:34:04 +0000 (+0100) Subject: test-utils: handle import bb failing and skip the test X-Git-Tag: 2015-4~6306 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c4a5bd810ca92d57c334113c528bd1d233b3eac4;p=openembedded-core.git test-utils: handle import bb failing and skip the test Instead of reporting an error when bb cannot be imported, skip the test instead. This makes it a lot easier to iterate a test suite when we don't care about this particular test. Signed-off-by: Ross Burton Signed-off-by: Saul Wold --- diff --git a/meta/lib/oe/tests/test_utils.py b/meta/lib/oe/tests/test_utils.py index 78b1361161..5e1ea0e6ea 100644 --- a/meta/lib/oe/tests/test_utils.py +++ b/meta/lib/oe/tests/test_utils.py @@ -1,11 +1,15 @@ import unittest -import bb, oe.utils +import oe.utils class TestPackagesFilterOutSystem(unittest.TestCase): def test_filter(self): """ Test that oe.utils.packages_filter_out_system works. """ + try: + import bb + except ImportError: + self.skipTest("Cannot import bb") d = bb.data_smart.DataSmart() d.setVar("PN", "foo")