summary refs log tree commit diff
path: root/tests/config/test_base.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add missing type hints to tests.config. (#14681)Patrick Cloke2022-12-161-5/+5
|
* Require direct references to configuration variables. (#10985)Patrick Cloke2021-10-061-8/+13
| | | | | | This removes the magic allowing accessing configurable variables directly from the config object. It is now required that a specific configuration class is used (e.g. `config.foo` must be replaced with `config.server.foo`).
* Allow using several custom template directories (#10587)Brendan Abolivier2021-08-171-3/+61
| | | Allow using several directories in read_templates.
* Remove redundant "coding: utf-8" lines (#9786)Jonathan de Jong2021-04-141-1/+0
| | | | | | | Part of #9744 Removes all redundant `# -*- coding: utf-8 -*-` lines from files, as python 3 automatically reads source code as utf-8 now. `Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
* Use the default templates when a custom template file cannot be found (#8037)Andrew Morgan2020-08-171-0/+82
Fixes https://github.com/matrix-org/synapse/issues/6583