Skip to content
Snippets Groups Projects
Unverified Commit f710d548 authored by kegsay's avatar kegsay Committed by GitHub
Browse files

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
parent cc865fff
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,7 @@ jobs: ...@@ -56,6 +56,7 @@ jobs:
- 'pyproject.toml' - 'pyproject.toml'
- 'poetry.lock' - 'poetry.lock'
- 'docker/**' - 'docker/**'
- 'scripts-dev/complement.sh'
linting: linting:
- 'synapse/**' - 'synapse/**'
......
Update complement.sh to match new public API shape.
...@@ -214,7 +214,7 @@ fi ...@@ -214,7 +214,7 @@ fi
extra_test_args=() 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. # All environment variables starting with PASS_ will be shared.
# (The prefix is stripped off before reaching the container.) # (The prefix is stripped off before reaching the container.)
...@@ -277,4 +277,4 @@ export PASS_SYNAPSE_LOG_TESTING=1 ...@@ -277,4 +277,4 @@ export PASS_SYNAPSE_LOG_TESTING=1
echo "Images built; running complement" echo "Images built; running complement"
cd "$COMPLEMENT_DIR" 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment