diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/dnf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/dnf.py b/meta/lib/oeqa/runtime/cases/dnf.py index 59a263dc63..eb3af07f0f 100644 --- a/meta/lib/oeqa/runtime/cases/dnf.py +++ b/meta/lib/oeqa/runtime/cases/dnf.py | |||
@@ -98,7 +98,7 @@ class DnfRepoTest(DnfTest): | |||
98 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_install_from_disk']) | 98 | @OETestDepends(['dnf.DnfRepoTest.test_dnf_install_from_disk']) |
99 | def test_dnf_install_from_http(self): | 99 | def test_dnf_install_from_http(self): |
100 | output = subprocess.check_output('%s %s -name run-postinsts-dev*' % (bb.utils.which(os.getenv('PATH'), "find"), | 100 | output = subprocess.check_output('%s %s -name run-postinsts-dev*' % (bb.utils.which(os.getenv('PATH'), "find"), |
101 | self.tc.td['DEPLOY_DIR_RPM']), shell=True).decode("utf-8") | 101 | os.path.join(self.tc.td['WORKDIR'], 'oe-testimage-repo')), shell=True).decode("utf-8") |
102 | rpm_path = output.split("/")[-2] + "/" + output.split("/")[-1] | 102 | rpm_path = output.split("/")[-2] + "/" + output.split("/")[-1] |
103 | url = 'http://%s:%s/%s' %(self.target.server_ip, self.repo_server.port, rpm_path) | 103 | url = 'http://%s:%s/%s' %(self.target.server_ip, self.repo_server.port, rpm_path) |
104 | self.dnf_with_repo('remove -y run-postinsts-dev') | 104 | self.dnf_with_repo('remove -y run-postinsts-dev') |