Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ testpaths = [
"tests/test_resources.py",
"tests/branches",
]
markers = [
"branch: branch lifecycle tests",
"backup: clone and restore tests",
]

[tool.ruff]
target-version = 'py313'
Expand Down
2 changes: 0 additions & 2 deletions tests/branches/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import pytest
from conftest import BRANCH_TIMEOUT_SEC, wait_for_status

pytestmark = pytest.mark.branch

_BRANCH_PASSWORD = "SecurePass1!"
_BRANCH_NAME = "test-branch"
_BRANCH_RENAMED = "test-branch-renamed"
Expand Down
2 changes: 0 additions & 2 deletions tests/branches/test_clone_restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import psycopg
import pytest

pytestmark = pytest.mark.backup

_BRANCH_PASSWORD = "SecurePass1!"


Expand Down
2 changes: 0 additions & 2 deletions tests/branches/test_start_stop.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import pytest
from conftest import BRANCH_TIMEOUT_SEC, wait_for_status

pytestmark = pytest.mark.branch


@pytest.fixture(scope="module")
def org(make_org):
Expand Down
2 changes: 0 additions & 2 deletions tests/test_backup_schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

import pytest

pytestmark = pytest.mark.backup

_state: dict = {}

_BACKUP_POLL_SEC = 15
Expand Down
Loading