Skip to content

Commit b4773c6

Browse files
committed
.
1 parent f79b616 commit b4773c6

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

scripts/populate_tox/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"deps": {
4242
"*": ["pytest-asyncio"],
4343
},
44+
"python": ">=3.7",
4445
},
4546
"bottle": {
4647
"package": "bottle",

tests/integrations/asyncpg/test_asyncpg.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121

2222

2323
def _get_db_name():
24-
"""Get database name, using worker/process ID for parallel test isolation."""
25-
# For tox parallel execution or other parallel scenarios, use process ID
26-
# This ensures each process gets its own database
2724
pid = os.getpid()
2825
thread_id = threading.get_ident()
2926
return f"{PG_NAME_BASE}_{pid}_{thread_id}"

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-09-04T09:02:27.457083+00:00
13+
# Last generated: 2025-09-04T09:55:59.328948+00:00
1414

1515
[tox]
1616
requires =
@@ -154,8 +154,8 @@ envlist =
154154

155155

156156
# ~~~ DBs ~~~
157-
{py3.6,py3.8,py3.9}-asyncpg-v0.23.0
158-
{py3.6,py3.9,py3.10}-asyncpg-v0.25.0
157+
{py3.7,py3.8,py3.9}-asyncpg-v0.23.0
158+
{py3.7,py3.9,py3.10}-asyncpg-v0.25.0
159159
{py3.7,py3.9,py3.10}-asyncpg-v0.27.0
160160
{py3.8,py3.11,py3.12}-asyncpg-v0.30.0
161161

0 commit comments

Comments
 (0)