summary refs log tree commit diff
path: root/.ci/scripts
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-11-01 13:12:22 +0000
committerDavid Robertson <davidr@element.io>2022-11-01 13:12:22 +0000
commitefdcb243287ae6c91e2806f0bfe24a9add2b488e (patch)
tree065ae80fe787e411a3d66faf3da0b62062b6ad53 /.ci/scripts
parentRun trial tests against Python 3.11 (#13812) (diff)
downloadsynapse-efdcb243287ae6c91e2806f0bfe24a9add2b488e.tar.xz
Revert a testing commit from #13812
It (4f5d492cd6a9438de03d1b768f4c220cb662ac06) should have been reverted before the merge to develop.
Diffstat (limited to '.ci/scripts')
-rwxr-xr-x.ci/scripts/calculate_jobs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/.ci/scripts/calculate_jobs.py b/.ci/scripts/calculate_jobs.py

index f82eec231a..c53d4d5ff1 100755 --- a/.ci/scripts/calculate_jobs.py +++ b/.ci/scripts/calculate_jobs.py
@@ -33,7 +33,7 @@ IS_PR = os.environ["GITHUB_REF"].startswith("refs/pull/") trial_sqlite_tests = [ { - "python-version": "3.11", + "python-version": "3.7", "database": "sqlite", "extras": "all", } @@ -52,7 +52,7 @@ if not IS_PR: trial_postgres_tests = [ { - "python-version": "3.11", + "python-version": "3.7", "database": "postgres", "postgres-version": "10", "extras": "all", @@ -71,7 +71,7 @@ if not IS_PR: trial_no_extra_tests = [ { - "python-version": "3.11", + "python-version": "3.7", "database": "sqlite", "extras": "", }