├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.rst ├── _config.yml ├── pyproject.toml ├── pytest_translations ├── __init__.py ├── config.py ├── mo_files.py ├── po_files.py ├── po_spelling.py └── utils.py ├── setup.cfg └── test_translations.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/README.rst -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/_config.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest_translations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/pytest_translations/__init__.py -------------------------------------------------------------------------------- /pytest_translations/config.py: -------------------------------------------------------------------------------- 1 | MARKER_NAME = "translations" 2 | -------------------------------------------------------------------------------- /pytest_translations/mo_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/pytest_translations/mo_files.py -------------------------------------------------------------------------------- /pytest_translations/po_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/pytest_translations/po_files.py -------------------------------------------------------------------------------- /pytest_translations/po_spelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/pytest_translations/po_spelling.py -------------------------------------------------------------------------------- /pytest_translations/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/pytest_translations/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/setup.cfg -------------------------------------------------------------------------------- /test_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermondo/pytest-translations/HEAD/test_translations.py --------------------------------------------------------------------------------