Skip to content

Commit c21609d

Browse files
committed
Merge branch 'main' into serverless
2 parents aff404e + 432d63d commit c21609d

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

postgres/tests/py_tests/test_stateless_catalog_resilience.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
"""
22
Release-risk repro tests for pg_deeplake stateless mode.
33
4+
TEMPORARILY DISABLED: client-side DDL WAL replay removed; tests need rework.
5+
46
These tests are part of the default suite and should stay enabled.
57
Run with:
68
pytest postgres/tests/py_tests/test_stateless_release_risks.py
@@ -12,6 +14,8 @@
1214
import asyncpg
1315
import pytest
1416

17+
pytestmark = pytest.mark.skip(reason="client-side DDL WAL replay removed; tests need rework")
18+
1519

1620
def _sql_literal(value: str) -> str:
1721
"""Return a single-quoted SQL literal with escaped quotes."""

postgres/tests/py_tests/test_stateless_multi_instance.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"""
1111
import pytest
1212

13+
pytestmark = pytest.mark.skip(reason="client-side DDL WAL replay removed; tests need rework")
14+
1315
import asyncpg
1416
import asyncio
1517
import os

postgres/tests/py_tests/test_stateless_reserved_schema.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
"""
1515
import pytest
1616

17+
pytestmark = pytest.mark.skip(reason="client-side DDL WAL replay removed; tests need rework")
18+
1719
import asyncpg
1820
import os
1921
import shutil

0 commit comments

Comments
 (0)