Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-storage
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-storage
Commits
36755c77
Commit
36755c77
authored
1 week ago
by
vlorentz
Browse files
Options
Downloads
Patches
Plain Diff
Tentatively fix 'database "tests" is being accessed by other users'
parent
15f34e0a
No related branches found
No related tags found
1 merge request
!1174
Fix 'database "tests" is being accessed by other users'
Pipeline
#14203
failed
1 week ago
Stage: external
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
swh/storage/tests/blocking/conftest.py
+8
-5
8 additions, 5 deletions
swh/storage/tests/blocking/conftest.py
swh/storage/tests/masking/conftest.py
+8
-5
8 additions, 5 deletions
swh/storage/tests/masking/conftest.py
with
16 additions
and
10 deletions
swh/storage/tests/blocking/conftest.py
+
8
−
5
View file @
36755c77
# 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
This diff is collapsed.
Click to expand it.
swh/storage/tests/masking/conftest.py
+
8
−
5
View file @
36755c77
# 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment