Browse Source

Update complement.sh to match new public API shape (#16466)

* Update complement.sh to match new public API shape

Sister PR to https://github.com/matrix-org/complement/pull/666

Context: https://github.com/matrix-org/complement/issues/654#issuecomment-1746613495

* Changelog

* Pedantry

* Run complement plz
tags/v1.95.0rc1
kegsay 7 months ago
committed by GitHub
parent
commit
f710d5480b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions
  1. +1
    -0
      .github/workflows/tests.yml
  2. +1
    -0
      changelog.d/16466.misc
  3. +2
    -2
      scripts-dev/complement.sh

+ 1
- 0
.github/workflows/tests.yml View File

@@ -56,6 +56,7 @@ jobs:
- 'pyproject.toml'
- 'poetry.lock'
- 'docker/**'
- 'scripts-dev/complement.sh'

linting:
- 'synapse/**'


+ 1
- 0
changelog.d/16466.misc View File

@@ -0,0 +1 @@
Update complement.sh to match new public API shape.

+ 2
- 2
scripts-dev/complement.sh View File

@@ -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

Loading…
Cancel
Save