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

This commit is contained in:
jundu
2026-05-12 13:27:51 +08:00
committed by GitHub
parent d7f4761a48
commit ecf5d844f5
28 changed files with 4979 additions and 60 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