add pytest in makefile

This commit is contained in:
mm644706215
2025-07-24 11:26:35 +08:00
parent e8820839fc
commit 08b2a71f45
9 changed files with 988 additions and 130 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "rustfs-s3-toolkit"
version = "0.2.0"
version = "0.2.1"
description = "RustFS S3 Storage Toolkit - A simple and powerful toolkit for RustFS and other S3-compatible object storage operations"
readme = "README.md"
authors = [
@@ -14,7 +14,6 @@ keywords = ["rustfs", "s3", "object-storage", "file-management", "cloud-storage"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
@@ -35,14 +34,88 @@ Issues = "https://github.com/mm644706215/rustfs-s3-toolkit/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
# 测试工具
"pytest>=8.0.0",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.0.0",
"coverage[toml]>=7.9.0",
# 多版本测试
"tox>=4.28.0",
# 代码格式化
"black>=25.0.0",
"isort>=6.0.0",
# 代码检查
"flake8>=7.3.0",
"mypy>=1.17.0",
# 打包工具 (仅开发环境需要)
"build>=1.2.0",
"twine>=6.1.0",
"setuptools>=80.0.0",
"wheel>=0.45.0",
# 文档工具
"sphinx>=8.2.0",
"sphinx-rtd-theme>=3.0.0",
]
test = [
"pytest>=8.0.0",
"pytest-cov>=6.0.0",
"pytest-asyncio>=1.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
requires = ["setuptools>=68.0.0", "wheel>=0.40.0"]
build-backend = "setuptools.build_meta"
# 工具配置
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
known_first_party = ["rustfs_s3_toolkit"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --strict-markers --strict-config"
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true