Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/complement_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,10 @@ jobs:
run: cat /tmp/gotest-complement.log | gotestfmt -hide "successful-downloads,successful-tests,empty-packages"

- name: Run in-repo Complement Tests
# Always run as long as we attempted to run the original Complement tests
# This lets us get a status report on the in-repo tests, even if the
# standard Complement test suite fails.
if: always() && steps.run_complement_tests.outcome != 'skipped'
id: run_in_repo_complement_tests
# -p=1: We're using `-p 1` to force the test packages to run serially as GHA boxes
# are underpowered and don't like running tons of Synapse instances at once.
Expand Down
1 change: 1 addition & 0 deletions changelog.d/20161.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Run the in-repo Complement test suite in CI, even when the standard Complement suite fails.
Loading