diff --git a/samples/ydb_service/tests/test_bson_reading.py b/samples/ydb_service/tests/test_bson_reading.py index bc31afb01dad..18e3e82bbfe4 100644 --- a/samples/ydb_service/tests/test_bson_reading.py +++ b/samples/ydb_service/tests/test_bson_reading.py @@ -2,6 +2,7 @@ import pytest +@pytest.mark.skip(reason='restore in TAXICOMMON-8860') @pytest.mark.ydb(files=['fill_orders.sql']) async def test_bson_reading(service_client): response = await service_client.post( diff --git a/samples/ydb_service/tests/test_bson_upserting.py b/samples/ydb_service/tests/test_bson_upserting.py index 5c0fc67f275f..8351a10c4205 100644 --- a/samples/ydb_service/tests/test_bson_upserting.py +++ b/samples/ydb_service/tests/test_bson_upserting.py @@ -1,4 +1,5 @@ import bson +import pytest DATA = {'value': b'\x00\x01\x02\x03'} @@ -10,6 +11,7 @@ """ +@pytest.mark.skip(reason='restore in TAXICOMMON-8860') async def test_ok(service_client, ydb): # validate YDB state cursor = ydb.execute(SQL_REQUEST) diff --git a/samples/ydb_service/tests/test_select.py b/samples/ydb_service/tests/test_select.py index 7538ca475522..f40c8e697eda 100644 --- a/samples/ydb_service/tests/test_select.py +++ b/samples/ydb_service/tests/test_select.py @@ -25,6 +25,7 @@ async def test_select_rows(service_client): } +@pytest.mark.skip(reason='restore in TAXICOMMON-8860') async def test_select_rows_empty(service_client): response = await service_client.post( 'ydb/select-rows', diff --git a/samples/ydb_service/tests/test_topic.py b/samples/ydb_service/tests/test_topic.py index 2309456e5945..7d414b61782f 100644 --- a/samples/ydb_service/tests/test_topic.py +++ b/samples/ydb_service/tests/test_topic.py @@ -1,6 +1,9 @@ import base64 +import pytest + +@pytest.mark.skip(reason='restore in TAXICOMMON-8860') async def test_topic(service_client, ydb, testpoint): @testpoint('topic-handle-message') async def handle_message_testpoint(data): diff --git a/samples/ydb_service/tests/test_upsert.py b/samples/ydb_service/tests/test_upsert.py index 180d3348d6f0..7b293041e06e 100644 --- a/samples/ydb_service/tests/test_upsert.py +++ b/samples/ydb_service/tests/test_upsert.py @@ -1,5 +1,7 @@ import json +import pytest + async def test_upsert_row(service_client, ydb): response = await service_client.post( @@ -29,6 +31,7 @@ async def test_upsert_row(service_client, ydb): } +@pytest.mark.skip(reason='restore in TAXICOMMON-8860') async def test_transaction(service_client, ydb): response = await service_client.post( 'ydb/upsert-2rows',