diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2023-05-05 13:27:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 13:27:51 +0100 |
commit | 83e7fa5eeeea3c7ba321679560d33cca6f4e8221 (patch) | |
tree | 7e510a779e7b4f1ccc5d4e463ce39fc83f3a0e08 /docs | |
parent | Move ThirdPartyEventRules into module_api/callbacks (#15535) (diff) | |
download | synapse-83e7fa5eeeea3c7ba321679560d33cca6f4e8221.tar.xz |
Allow running Complement integration tests via podman (#15543)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/development/contributing_guide.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/development/contributing_guide.md b/docs/development/contributing_guide.md index 925dcd8933..56cf4ba81e 100644 --- a/docs/development/contributing_guide.md +++ b/docs/development/contributing_guide.md @@ -346,6 +346,7 @@ The above will run a monolithic (single-process) Synapse with SQLite as the data A safe example would be `WORKER_TYPES="federation_inbound, federation_sender, synchrotron"`. See the [worker documentation](../workers.md) for additional information on workers. - Passing `ASYNCIO_REACTOR=1` as an environment variable to use the Twisted asyncio reactor instead of the default one. +- Passing `PODMAN=1` will use the [podman](https://podman.io/) container runtime, instead of docker. To increase the log level for the tests, set `SYNAPSE_TEST_LOG_LEVEL`, e.g: ```sh |