update test for latest synapse docker image

This commit is contained in:
Guilhem Saurel 2021-08-27 17:44:40 +02:00
parent 530f40a129
commit 6f7d38dbd7
2 changed files with 2 additions and 1 deletions

View file

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- allow "room_id" to be passed as a parameter or with the data - allow "room_id" to be passed as a parameter or with the data
- rename "text" to "body". - rename "text" to "body".
- Publish releases also on github from github actions - Publish releases also on github from github actions
- fixed tests for recent synapse docker image
## [3.1.1] - 2021-07-18 ## [3.1.1] - 2021-07-18

View file

@ -4,7 +4,7 @@ FROM matrixdotorg/synapse
# The config dir defaults to /data which is a volume made to keep data. # The config dir defaults to /data which is a volume made to keep data.
# Here, we want to trash those (and avoid the permission issues) by using something else # Here, we want to trash those (and avoid the permission issues) by using something else
ENV SYNAPSE_CONFIG_DIR=/srv SYNAPSE_SERVER_NAME=tests SYNAPSE_REPORT_STATS=no ENV SYNAPSE_CONFIG_DIR=/srv SYNAPSE_DATA_DIR=/srv SYNAPSE_SERVER_NAME=tests SYNAPSE_REPORT_STATS=no
# Generate configuration and keys for synapse # Generate configuration and keys for synapse
WORKDIR $SYNAPSE_CONFIG_DIR WORKDIR $SYNAPSE_CONFIG_DIR