summary refs log tree commit diff
path: root/scripts-dev
diff options
context:
space:
mode:
authorPatrick Cloke <patrickc@matrix.org>2023-10-17 11:56:14 -0400
committerPatrick Cloke <patrickc@matrix.org>2023-10-17 11:56:14 -0400
commit07b3b9a95e979c0125d069b8841fd7ce4917e559 (patch)
treef4c9e521e2cd0ab54b03282032a44e6d007b1cb0 /scripts-dev
parentRevert "TEMPORARY Measure and log test cases" (diff)
parent1.95.0rc1 (diff)
downloadsynapse-07b3b9a95e979c0125d069b8841fd7ce4917e559.tar.xz
Merge branch 'release-v1.95' into matrix-org-hotfixes
Diffstat (limited to 'scripts-dev')
-rwxr-xr-xscripts-dev/complement.sh4
-rwxr-xr-xscripts-dev/release.py4
2 files changed, 6 insertions, 2 deletions
diff --git a/scripts-dev/complement.sh b/scripts-dev/complement.sh

index 8416b55674..3e0cddb527 100755 --- a/scripts-dev/complement.sh +++ b/scripts-dev/complement.sh
@@ -214,7 +214,7 @@ fi extra_test_args=() -test_tags="synapse_blacklist,msc3874,msc3890,msc3391,msc3930,faster_joins" +test_packages="./tests/csapi ./tests ./tests/msc3874 ./tests/msc3890 ./tests/msc3391 ./tests/msc3930 ./tests/msc3902" # All environment variables starting with PASS_ will be shared. # (The prefix is stripped off before reaching the container.) @@ -277,4 +277,4 @@ export PASS_SYNAPSE_LOG_TESTING=1 echo "Images built; running complement" cd "$COMPLEMENT_DIR" -go test -v -tags $test_tags -count=1 "${extra_test_args[@]}" "$@" ./tests/... +go test -v -tags "synapse_blacklist" -count=1 "${extra_test_args[@]}" "$@" $test_packages diff --git a/scripts-dev/release.py b/scripts-dev/release.py
index 74f41a40ec..7508ae5096 100755 --- a/scripts-dev/release.py +++ b/scripts-dev/release.py
@@ -684,6 +684,10 @@ def full(gh_token: str) -> None: click.echo("1. If this is a security release, read the security wiki page.") click.echo("2. Check for any release blockers before proceeding.") click.echo(" https://github.com/matrix-org/synapse/labels/X-Release-Blocker") + click.echo( + "3. Check for any other special release notes, including announcements to add to the changelog or special deployment instructions." + ) + click.echo(" See the 'Synapse Maintainer Report'.") click.confirm("Ready?", abort=True)