aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkegsay <kegan@matrix.org>2023-10-11 17:41:12 +0100
committerGitHub <noreply@github.com>2023-10-11 17:41:12 +0100
commit5888329b133468b23bb6d84ab9f244c667c9ac17 (patch)
tree7aefde35b90c81cf0410168626de493bc00f04f6
parent2259e71c0cc7d154eefd85a6466b08e7afb7f69a (diff)
Update Complement to match new public API shape (#3232)
Sister PR to matrix-org/complement#666 Context: https://github.com/matrix-org/complement/issues/654#issuecomment-1746613495
-rw-r--r--.github/workflows/dendrite.yml2
-rwxr-xr-xbuild/scripts/complement.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/dendrite.yml b/.github/workflows/dendrite.yml
index 772b45cb..ac40f06b 100644
--- a/.github/workflows/dendrite.yml
+++ b/.github/workflows/dendrite.yml
@@ -440,7 +440,7 @@ jobs:
# Run Complement
- run: |
set -o pipefail &&
- go test -v -json -tags dendrite_blacklist ./tests/... 2>&1 | gotestfmt -hide all
+ go test -v -json -tags dendrite_blacklist ./tests ./tests/csapi 2>&1 | gotestfmt -hide all
shell: bash
name: Run Complement Tests
env:
diff --git a/build/scripts/complement.sh b/build/scripts/complement.sh
index 29feff30..8608d8fa 100755
--- a/build/scripts/complement.sh
+++ b/build/scripts/complement.sh
@@ -15,5 +15,5 @@ tar -xzf master.tar.gz
# Run the tests!
cd complement-master
-COMPLEMENT_BASE_IMAGE=complement-dendrite:latest go test -v -count=1 ./tests
+COMPLEMENT_BASE_IMAGE=complement-dendrite:latest go test -v -count=1 ./tests ./tests/csapi