refactor: 删除冗余 cli 入口脚本, gittool 用数组配置 clean excludes
CI / Lint, Typecheck & Test (push) Has been cancelled

1. 删除 13 个已有 YAML 配置的 cli .py 入口脚本, 统一通过 pf 调用
2. gittool.yaml 用 CLEAN_EXCLUDES 数组变量配置 git clean 的 -e 参数,
   保留 .venv/.tox/node_modules/.idea 等目录避免误删
3. run_cli 执行前打印调用信息: [gittool] 执行: c
4. 更新 pyproject.toml 移除 13 个冗余 entry points, 仅保留 pf
5. 清理测试文件中的 TestMain 类 (测 _ops 模块的测试保留)
This commit is contained in:
2026-07-05 08:39:20 +08:00
parent 6a3e3a57cd
commit de368ea810
30 changed files with 20 additions and 1288 deletions
-17
View File
@@ -5,8 +5,6 @@ from __future__ import annotations
from pathlib import Path
from unittest.mock import patch
import pyflowx as px
from pyflowx.cli import folderzip
from pyflowx.cli._ops import files
@@ -61,18 +59,3 @@ class TestRegisteredFunctions:
"""folderzip_default should be a registered callable."""
# folderzip_default 现在是通过 @px.register_fn 注册的普通函数, 不是 TaskSpec
assert callable(files.folderzip_default)
# ---------------------------------------------------------------------- #
# main function
# ---------------------------------------------------------------------- #
class TestMain:
"""Test main function."""
def test_main_calls_run_yaml(self) -> None:
"""main() should parse args and call px.run_yaml()."""
with patch("sys.argv", ["folderzip", "--cwd", "."]), patch.object(px, "run_yaml") as mock_run_yaml:
folderzip.main()
assert mock_run_yaml.called
# 验证 jobs 参数为 "zip" (YAML 中的 job 名)
assert mock_run_yaml.call_args.kwargs["jobs"] == "zip"