From 3c31e3d72c254fa8e80a1a91edc422b182042787 Mon Sep 17 00:00:00 2001 From: yaokai13 Date: Mon, 16 Aug 2021 18:33:59 +0800 Subject: [PATCH] exclude RISC-V related tests --- core/check_meta_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/check_meta_service.py b/core/check_meta_service.py index 3997590..9f203e3 100644 --- a/core/check_meta_service.py +++ b/core/check_meta_service.py @@ -444,7 +444,7 @@ class CheckMetaPull(object): all_pkg_path = os.popen("find | grep %s" % pkg).read().split('\n') log.info("all_pkg_name_contains %s:%s" % (pkg, all_pkg_path)) for x in all_pkg_path: - if x.split("/")[-1] == pkg and ":Bak" not in x: + if x.split("/")[-1] == pkg and ":Bak" not in x and "RISC-V" not in x: all_pkg_pro.append(x) log.info("%s in %s is %s" % (pkg, branch, all_pkg_pro)) os.chdir(now_path) -- Gitee