summary refs log tree commit diff
path: root/.ci/scripts
diff options
context:
space:
mode:
authorQuentin Gliech <quenting@element.io>2023-03-02 12:14:44 +0100
committerGitHub <noreply@github.com>2023-03-02 11:14:44 +0000
commit7ec1f096d3e66c7cd857e75bef229688c73a9868 (patch)
treeae8ff3de9890586c61f7efba022e84a51bf22a50 /.ci/scripts
parentMove event_reports to `RoomWorkerStore` (#15165) (diff)
downloadsynapse-7ec1f096d3e66c7cd857e75bef229688c73a9868.tar.xz
Add Sytest jobs with the asyncio reactor enabled (#14101)
Diffstat (limited to '.ci/scripts')
-rwxr-xr-x.ci/scripts/calculate_jobs.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/.ci/scripts/calculate_jobs.py b/.ci/scripts/calculate_jobs.py

index 0cdc20e19c..b41ec0b6e2 100755 --- a/.ci/scripts/calculate_jobs.py +++ b/.ci/scripts/calculate_jobs.py
@@ -109,12 +109,27 @@ sytest_tests = [ "postgres": "multi-postgres", "workers": "workers", }, + { + "sytest-tag": "focal", + "postgres": "multi-postgres", + "workers": "workers", + "reactor": "asyncio", + }, ] if not IS_PR: sytest_tests.extend( [ { + "sytest-tag": "focal", + "reactor": "asyncio", + }, + { + "sytest-tag": "focal", + "postgres": "postgres", + "reactor": "asyncio", + }, + { "sytest-tag": "testing", "postgres": "postgres", },