fix: 修复 pipeline 模块中的打包逻辑缺陷并完善测试覆盖

This commit is contained in:
2026-03-30 12:22:37 +08:00
parent 07ef471aa6
commit 71887bb4bb
11 changed files with 1186 additions and 39 deletions
+16 -1
View File
@@ -22,4 +22,19 @@ keywords = ["nlp", "datasets", "language-models", "machine-learning"]
Homepage = "https://github.com/khaosz/khaosz_dataset"
[tool.setuptools.packages.find]
where = ["."]
where = ["."]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
filterwarnings = [
"ignore::DeprecationWarning",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
]