diff options
author | Eric Eastwood <erice@element.io> | 2022-03-03 04:45:23 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 11:45:23 +0100 |
commit | 31b125ccec75e708b09f40205c8cfe692edfa6b4 (patch) | |
tree | 25f9002313fc5c297ada367b72909a1071b44b0a | |
parent | Move the `snapcraft` configuration to `contrib`. (#12142) (diff) | |
download | synapse-31b125ccec75e708b09f40205c8cfe692edfa6b4.tar.xz |
Enable MSC3030 Complement tests in Synapse (#12144)
The Complement tests for MSC3030 are now merged, https://github.com/matrix-org/complement/pull/178 Synapse implmentation: https://github.com/matrix-org/synapse/pull/9445
-rw-r--r-- | .github/workflows/tests.yml | 2 | ||||
-rw-r--r-- | changelog.d/12144.misc | 1 | ||||
-rwxr-xr-x | scripts-dev/complement.sh | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3f4e44ca59..fa9611d42b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -376,7 +376,7 @@ jobs: # Run Complement - run: | set -o pipefail - go test -v -json -p 1 -tags synapse_blacklist,msc2403 ./tests/... 2>&1 | gotestfmt + go test -v -json -p 1 -tags synapse_blacklist,msc2403,msc3030 ./tests/... 2>&1 | gotestfmt shell: bash name: Run Complement Tests env: diff --git a/changelog.d/12144.misc b/changelog.d/12144.misc new file mode 100644 index 0000000000..d8f71bb203 --- /dev/null +++ b/changelog.d/12144.misc @@ -0,0 +1 @@ +Enable [MSC3030](https://github.com/matrix-org/matrix-doc/pull/3030) Complement tests in CI. diff --git a/scripts-dev/complement.sh b/scripts-dev/complement.sh index 0aecb3daf1..e3d3e0f293 100755 --- a/scripts-dev/complement.sh +++ b/scripts-dev/complement.sh @@ -71,4 +71,4 @@ fi # Run the tests! echo "Images built; running complement" -go test -v -tags synapse_blacklist,msc2403 -count=1 $EXTRA_COMPLEMENT_ARGS ./tests/... +go test -v -tags synapse_blacklist,msc2403,msc3030 -count=1 $EXTRA_COMPLEMENT_ARGS ./tests/... |