From 13944678c3c696418bfde3463bda4cedc8d289c2 Mon Sep 17 00:00:00 2001
From: Patrick Cloke <clokep@users.noreply.github.com>
Date: Tue, 27 Jul 2021 08:08:51 -0400
Subject: [PATCH] Use new go test running syntax for complement. (#10488)

Updates CI and the helper script t ensures all tests are run (in parallel).
---
 .github/workflows/tests.yml | 2 +-
 changelog.d/10488.misc      | 1 +
 scripts-dev/complement.sh   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 changelog.d/10488.misc

diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 4e61824ee5..0a62c62d02 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -344,7 +344,7 @@ jobs:
         working-directory: complement/dockerfiles
 
       # Run Complement
-      - run: go test -v -tags synapse_blacklist,msc2403,msc2946,msc3083 ./tests
+      - run: go test -v -tags synapse_blacklist,msc2403,msc2946,msc3083 ./tests/...
         env:
           COMPLEMENT_BASE_IMAGE: complement-synapse:latest
         working-directory: complement
diff --git a/changelog.d/10488.misc b/changelog.d/10488.misc
new file mode 100644
index 0000000000..a55502c163
--- /dev/null
+++ b/changelog.d/10488.misc
@@ -0,0 +1 @@
+Update syntax used to run complement tests.
diff --git a/scripts-dev/complement.sh b/scripts-dev/complement.sh
index 4df224be67..cba015d942 100755
--- a/scripts-dev/complement.sh
+++ b/scripts-dev/complement.sh
@@ -65,4 +65,4 @@ if [[ -n "$1" ]]; then
 fi
 
 # Run the tests!
-go test -v -tags synapse_blacklist,msc2946,msc3083,msc2403 -count=1 $EXTRA_COMPLEMENT_ARGS ./tests
+go test -v -tags synapse_blacklist,msc2946,msc3083,msc2403 -count=1 $EXTRA_COMPLEMENT_ARGS ./tests/...
-- 
GitLab