mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Disable test for specialed intel codec on arm
This commit is contained in:
parent
00c886133d
commit
0d00f73a1f
@ -2,7 +2,7 @@ import random
|
||||
import string
|
||||
|
||||
import pytest
|
||||
from helpers.cluster import ClickHouseCluster
|
||||
from helpers.cluster import ClickHouseCluster, is_arm
|
||||
|
||||
cluster = ClickHouseCluster(__file__)
|
||||
|
||||
@ -62,6 +62,11 @@ def start_cluster():
|
||||
|
||||
|
||||
def test_preconfigured_default_codec(start_cluster):
|
||||
if is_arm():
|
||||
pytest.skip(
|
||||
"Skipping test because it's special test for Intel code (doesn't work on ARM)"
|
||||
)
|
||||
|
||||
for node in [node1, node2]:
|
||||
node.query(
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user