ad671d94c5
CI/CD Pipeline / Validate Code Quality And Tests (push) Successful in 1m25s
CI/CD Pipeline / Frontend Lint (push) Successful in 2m56s
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Successful in 6m40s
CI/CD Pipeline / Staging E2E Tests (push) Successful in 4m30s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 5m35s
fix(voice-clone): source_audio_url 不做预签名转换,原样返回用户输入
71 lines
1.1 KiB
TOML
Executable File
71 lines
1.1 KiB
TOML
Executable File
[tool.black]
|
|
line-length = 120
|
|
target-version = ["py312"]
|
|
extend-exclude = '''
|
|
(
|
|
\.git
|
|
| \.cache
|
|
| \.pytest_cache
|
|
| \.mypy_cache
|
|
| __pycache__
|
|
| node_modules
|
|
| \.venv
|
|
| venv
|
|
| build
|
|
| dist
|
|
| \.next
|
|
| out
|
|
| coverage
|
|
)
|
|
'''
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 120
|
|
extend_skip_glob = [
|
|
".git/**",
|
|
".cache/**",
|
|
".pytest_cache/**",
|
|
".mypy_cache/**",
|
|
"__pycache__/**",
|
|
"node_modules/**",
|
|
".venv/**",
|
|
"venv/**",
|
|
"build/**",
|
|
"dist/**",
|
|
".next/**",
|
|
"out/**",
|
|
"coverage/**",
|
|
]
|
|
|
|
[tool.coverage.run]
|
|
source = ["apps/api/app", "packages"]
|
|
omit = [
|
|
"*/migrations/*",
|
|
"*/tests/*",
|
|
"*/test_*.py",
|
|
"*/site-packages/*",
|
|
]
|
|
branch = true
|
|
|
|
[tool.coverage.report]
|
|
exclude_lines = [
|
|
"pragma: no cover",
|
|
"def __repr__",
|
|
"if __name__ == .__main__.:",
|
|
"raise NotImplementedError",
|
|
"pass",
|
|
"if TYPE_CHECKING:",
|
|
"class .*Protocol",
|
|
"@abstractmethod",
|
|
"raise AssertionError",
|
|
"raise RuntimeError",
|
|
"if 0:",
|
|
"if __debug__:",
|
|
]
|
|
show_missing = true
|
|
skip_covered = false
|
|
|
|
[tool.coverage.xml]
|
|
output = "coverage.xml"
|