diff options
-rw-r--r-- | meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py b/meta-selftest/lib/oeqa/runtime/cases/dnf_runtime.py index 81c50ed97b..1aa7274701 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 @@ | |||
1 | from oeqa.core.decorator.depends import OETestDepends | 1 | from oeqa.core.decorator.depends import OETestDepends |
2 | from oeqa.runtime.cases.dnf import DnfTest | 2 | from oeqa.runtime.cases.dnf import DnfTest |
3 | from oeqa.utils.httpserver import HTTPService | 3 | from oeqa.utils.httpserver import HTTPService |
4 | from oeqa.core.decorator.data import skipIfDataVar | ||
4 | 5 | ||
5 | class DnfSelftest(DnfTest): | 6 | class DnfSelftest(DnfTest): |
6 | 7 | ||
@@ -18,6 +19,8 @@ class DnfSelftest(DnfTest): | |||
18 | cls.temp_dir.cleanup() | 19 | cls.temp_dir.cleanup() |
19 | 20 | ||
20 | @OETestDepends(['dnf.DnfBasicTest.test_dnf_help']) | 21 | @OETestDepends(['dnf.DnfBasicTest.test_dnf_help']) |
22 | @skipIfDataVar('PACKAGE_FEED_URIS', None, | ||
23 | 'Not suitable as PACKAGE_FEED_URIS is not set') | ||
21 | def test_verify_package_feeds(self): | 24 | def test_verify_package_feeds(self): |
22 | """ | 25 | """ |
23 | Summary: Check correct setting of PACKAGE_FEED_URIS var | 26 | Summary: Check correct setting of PACKAGE_FEED_URIS var |