Skip to content
Snippets Groups Projects
Unverified Commit 258e1dfd authored by Oliver Smith's avatar Oliver Smith
Browse files

test_upstream_compat: adjust pmb.parse.apkbuild

The args argument was removed to this function.
parent 0c353ad1
No related branches found
No related tags found
No related merge requests found
Pipeline #163506 passed
......@@ -41,7 +41,7 @@ def test_qt_versions(args):
failed = []
for path in glob.glob(args.aports + "/*/qt5-*/APKBUILD"):
# Read the pkgver
apkbuild = pmb.parse.apkbuild(args, path)
apkbuild = pmb.parse.apkbuild(path)
pkgname = apkbuild["pkgname"]
pkgver = apkbuild["pkgver"]
......@@ -98,7 +98,7 @@ def test_aportgen_versions(args):
# Compare the version
print("Checking " + path)
apkbuild = pmb.parse.apkbuild(args, path)
apkbuild = pmb.parse.apkbuild(path)
version = apkbuild["pkgver"] + "-r" + apkbuild["pkgrel"]
if version != version_upstream:
failed.append(apkbuild["pkgname"] + ": " + version +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment