pyproject.toml + pytest: canonical 测试命令 (.venv/bin/pytest -q, 23 passed)

This commit is contained in:
lou
2026-08-09 22:42:43 +08:00
parent d168ac3472
commit c05ffca126
2 changed files with 13 additions and 0 deletions
+1
View File
@@ -18,3 +18,4 @@ kali-2026.zip
# 分卷产物 / init json (生成物) # 分卷产物 / init json (生成物)
*.part* *.part*
*.init.json *.init.json
.pytest_cache/
+12
View File
@@ -0,0 +1,12 @@
[project]
name = "7z-encrypt"
version = "0.1.0"
description = "文件安全传输系统 - 客户端 (加密/分卷/元数据/传输)"
requires-python = ">=3.11"
dependencies = [
"cryptography>=50.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]