Skip to content

Commit f4cf4de

Browse files
author
Mikhail Koviazin
committed
tests: mark test_hash for skipping
Hash commands are part of proprietary module that Valkey does not implement for now. Mark them for skipping just like JSON and search. Signed-off-by: Mikhail Koviazin <mikhail.koviazin@aiven.io>
1 parent e456432 commit f4cf4de

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

tests/test_asyncio/test_hash.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
import asyncio
22
from datetime import datetime, timedelta
33

4+
import pytest
45
from tests.conftest import skip_if_server_version_lt
56

7+
pytestmark = pytest.mark.skip
8+
69

710
@skip_if_server_version_lt("7.3.240")
811
async def test_hexpire_basic(r):

tests/test_hash.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
import pytest
55
from tests.conftest import skip_if_server_version_lt
66

7+
pytestmark = pytest.mark.skip
8+
79

810
@skip_if_server_version_lt("7.3.240")
911
def test_hexpire_basic(r):

0 commit comments

Comments
 (0)