- Rename page-level button to 'Массовая замена по всем запускам' (bulk_replace_all key in i18n) to distinguish from run-level button - Remove duplicate Bulk Replace button from records table header in TranslationRunResult (kept only in result header) - Fix i18n path for bulk_replace_all (was incorrectly in run namespace)
24 lines
549 B
TOML
24 lines
549 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "superset-tools-backend"
|
|
version = "0.0.0"
|
|
requires-python = ">=3.13"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["src*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests", "src/plugins"]
|
|
markers = [
|
|
"integration: Integration tests requiring external services (Docker, Testcontainers, Superset). Use --run-integration to enable.",
|
|
]
|