Migrate Intel CPU cases to the test/registered (#25139)

This commit is contained in:
jundu
2026-05-14 10:22:09 +08:00
committed by GitHub
parent 65e9f81c7d
commit 426dd339da
27 changed files with 4924 additions and 5 deletions
+2 -2
View File
@@ -22,11 +22,11 @@ def main() -> int:
ci_register = importlib.util.module_from_spec(spec)
spec.loader.exec_module(ci_register)
# Same filter as run_suite.py: skip conftest.py and __init__.py
# Same filter as run_suite.py: skip conftest.py, __init__.py, and utils.py
files = sorted(
f
for f in glob.glob("test/registered/**/*.py", recursive=True)
if os.path.basename(f) not in ("conftest.py", "__init__.py")
if os.path.basename(f) not in ("conftest.py", "__init__.py", "utils.py")
)
if not files:
return 0