Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Run trial tests against Python 3.11 #13812

Merged
merged 7 commits into from
Nov 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .ci/scripts/calculate_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def set_output(key: str, value: str):

trial_sqlite_tests = [
{
"python-version": "3.7",
"python-version": "3.11",
"database": "sqlite",
"extras": "all",
}
Expand All @@ -46,13 +46,13 @@ def set_output(key: str, value: str):
"database": "sqlite",
"extras": "all",
}
for version in ("3.8", "3.9", "3.10")
for version in ("3.8", "3.9", "3.10", "3.11")
)


trial_postgres_tests = [
{
"python-version": "3.7",
"python-version": "3.11",
"database": "postgres",
"postgres-version": "10",
"extras": "all",
Expand All @@ -62,7 +62,7 @@ def set_output(key: str, value: str):
if not IS_PR:
trial_postgres_tests.append(
{
"python-version": "3.10",
"python-version": "3.11",
"database": "postgres",
"postgres-version": "14",
"extras": "all",
Expand All @@ -71,7 +71,7 @@ def set_output(key: str, value: str):

trial_no_extra_tests = [
{
"python-version": "3.7",
"python-version": "3.11",
"database": "sqlite",
"extras": "",
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ jobs:
- python-version: "3.7"
postgres-version: "10"

- python-version: "3.10"
- python-version: "3.11"
postgres-version: "14"

services:
Expand Down
1 change: 1 addition & 0 deletions changelog.d/13812.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Run unit tests against Python 3.11.