Revert "Migrate Intel CPU cases to the test/registered." (#25044)

This commit is contained in:
Ma Mingfei
2026-05-12 13:32:47 +08:00
committed by GitHub
parent 1f985c50db
commit 71285335f7
28 changed files with 60 additions and 4979 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, __init__.py, and utils.py
# Same filter as run_suite.py: skip conftest.py and __init__.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", "utils.py")
if os.path.basename(f) not in ("conftest.py", "__init__.py")
)
if not files:
return 0