From: Chen Qi Date: Fri, 1 Jun 2018 05:03:02 +0000 (+0800) Subject: oeqa/runtime/cases/dnf_runtime.py: skip test if PACKAGE_FEED_URIS is not set X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~17775 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37e3d9d91cc0c8d0dac48463a888c692f4648f66;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa/runtime/cases/dnf_runtime.py: skip test if PACKAGE_FEED_URIS is not set This test is to test the behaviour of PACKAGE_FEED_URIS is correct or not. If it's not even set, it makes no sense to do such test. So skip this test if PACKAGE_FEED_URIS is not set. Signed-off-by: Chen Qi Signed-off-by: Richard Purdie --- diff --git a/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py b/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py index 81c50ed97b7..1aa7274701e 100644 --- a/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py +++ b/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py @@ -1,6 +1,7 @@ from oeqa.core.decorator.depends import OETestDepends from oeqa.runtime.cases.dnf import DnfTest from oeqa.utils.httpserver import HTTPService +from oeqa.core.decorator.data import skipIfDataVar class DnfSelftest(DnfTest): @@ -18,6 +19,8 @@ class DnfSelftest(DnfTest): cls.temp_dir.cleanup() @OETestDepends(['dnf.DnfBasicTest.test_dnf_help']) + @skipIfDataVar('PACKAGE_FEED_URIS', None, + 'Not suitable as PACKAGE_FEED_URIS is not set') def test_verify_package_feeds(self): """ Summary: Check correct setting of PACKAGE_FEED_URIS var