diff options
author | Quentin Gliech <quenting@element.io> | 2023-03-02 12:14:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 11:14:44 +0000 |
commit | 7ec1f096d3e66c7cd857e75bef229688c73a9868 (patch) | |
tree | ae8ff3de9890586c61f7efba022e84a51bf22a50 /.ci | |
parent | Move event_reports to `RoomWorkerStore` (#15165) (diff) | |
download | synapse-7ec1f096d3e66c7cd857e75bef229688c73a9868.tar.xz |
Add Sytest jobs with the asyncio reactor enabled (#14101)
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/scripts/calculate_jobs.py | 15 |
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", }, |