Skip to content
Snippets Groups Projects
Commit 36755c77 authored by vlorentz's avatar vlorentz
Browse files

Tentatively fix 'database "tests" is being accessed by other users'

parent 15f34e0a
No related branches found
No related tags found
1 merge request!1174Fix 'database "tests" is being accessed by other users'
Pipeline #14203 failed
# Copyright (C) 2024 The Software Heritage developers
# Copyright (C) 2024-2025 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from functools import partial
from typing import Iterator
import pytest
from pytest_postgresql import factories
......@@ -28,10 +29,12 @@ blocking_db_postgresql = factories.postgresql(
@pytest.fixture
def blocking_admin(blocking_db_postgresql) -> BlockingAdmin:
return BlockingAdmin.connect(blocking_db_postgresql.info.dsn)
def blocking_admin(blocking_db_postgresql) -> Iterator[BlockingAdmin]:
with BlockingAdmin.connect(blocking_db_postgresql.info.dsn) as db:
yield db
@pytest.fixture
def blocking_query(blocking_db_postgresql) -> BlockingQuery:
return BlockingQuery.connect(blocking_db_postgresql.info.dsn)
def blocking_query(blocking_db_postgresql) -> Iterator[BlockingQuery]:
with BlockingQuery.connect(blocking_db_postgresql.info.dsn) as db:
yield db
# Copyright (C) 2024 The Software Heritage developers
# Copyright (C) 2024-2025 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from functools import partial
from typing import Iterator
import pytest
from pytest_postgresql import factories
......@@ -29,13 +30,15 @@ masking_db_postgresql = factories.postgresql(
@pytest.fixture
def masking_admin(masking_db_postgresql) -> MaskingAdmin:
return MaskingAdmin.connect(masking_db_postgresql.info.dsn)
def masking_admin(masking_db_postgresql) -> Iterator[MaskingAdmin]:
with MaskingAdmin.connect(masking_db_postgresql.info.dsn) as db:
yield db
@pytest.fixture
def masking_query(masking_db_postgresql) -> MaskingQuery:
return MaskingQuery.connect(masking_db_postgresql.info.dsn)
def masking_query(masking_db_postgresql) -> Iterator[MaskingQuery]:
with MaskingQuery.connect(masking_db_postgresql.info.dsn) as db:
yield db
@pytest.fixture
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment