From 8525dd1387a0f9e8a8e7a50a5c6b8d1d29352316 Mon Sep 17 00:00:00 2001 From: zhangchunle Date: Thu, 2 Sep 2021 14:12:16 +0800 Subject: [PATCH] add npu code not exec linux/windows cases (#35363) --- tools/get_pr_ut.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/get_pr_ut.py b/tools/get_pr_ut.py index 93337978393..bd67d68c131 100644 --- a/tools/get_pr_ut.py +++ b/tools/get_pr_ut.py @@ -328,7 +328,7 @@ class PRChecker(object): if f_judge.endswith('.md'): ut_list.append('md_placeholder') onlyCommentsFilesOrXpu.append(f_judge) - elif 'tests/unittests/xpu' in f_judge or 'tests/unittests/npu' in f_judge: + elif 'tests/unittests/xpu' in f_judge or 'tests/unittests/npu' in f_judge or 'op_npu.cc' in f_judge: ut_list.append('xpu_npu_placeholder') onlyCommentsFilesOrXpu.append(f_judge) elif f_judge.endswith(('.h', '.cu', '.cc', 'py')): -- GitLab