diff options
author | kegsay <kegan@matrix.org> | 2022-02-11 16:26:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 16:26:23 +0000 |
commit | a566d53b0b763220b93946c44986e7337549769b (patch) | |
tree | 3ef10cca28d53ce2aa93cca3ccf07c2c9fb96fcb /.github | |
parent | 88b45d5cd248794237baebbe4945ef708a7598de (diff) |
Don't allow parallel complement tests (#2169)
Fixes flakiness seemingly. See https://github.com/matrix-org/synapse/pull/11910
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4a172029..124940f7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -63,7 +63,7 @@ jobs: # Run Complement - run: | set -o pipefail && - go test -v -json -tags dendrite_blacklist ./tests/... 2>&1 | gotestfmt + go test -v -p 1 -json -tags dendrite_blacklist ./tests/... 2>&1 | gotestfmt shell: bash name: Run Complement Tests env: |