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

Commit

Permalink
Run trial tests against Python 3.11 (#13812)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson authored Nov 1, 2022
1 parent 9473ebb commit 5905ba1
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 97 deletions.
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.
Loading

0 comments on commit 5905ba1

Please sign in to comment.