Skip to content

Commit d0c7e8c

Browse files
Automatic style fix
1 parent c1da3a4 commit d0c7e8c

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

tests/integration/test_crash_log/test.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ def wait_for_clickhouse_stop(started_node):
3939
assert result == "OK", "ClickHouse process is still running"
4040

4141

42-
@pytest.mark.skipif(helpers.cluster.is_arm(), reason="Fails on ARM, issue https://github.com/ClickHouse/ClickHouse/issues/63855")
42+
@pytest.mark.skipif(
43+
helpers.cluster.is_arm(),
44+
reason="Fails on ARM, issue https://github.com/ClickHouse/ClickHouse/issues/63855",
45+
)
4346
def test_pkill(started_node):
4447
if (
4548
started_node.is_built_with_thread_sanitizer()
@@ -60,7 +63,10 @@ def test_pkill(started_node):
6063
)
6164

6265

63-
@pytest.mark.skipif(helpers.cluster.is_arm(), reason="Fails on ARM, issue https://github.com/ClickHouse/ClickHouse/issues/63855")
66+
@pytest.mark.skipif(
67+
helpers.cluster.is_arm(),
68+
reason="Fails on ARM, issue https://github.com/ClickHouse/ClickHouse/issues/63855",
69+
)
6470
def test_pkill_query_log(started_node):
6571
for signal in ["SEGV", "4"]:
6672
# force create query_log if it was not created

tests/integration/test_send_crash_reports/test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ def started_node():
3535
pass
3636

3737

38-
@pytest.mark.skipif(helpers.cluster.is_arm(), reason="Fails on ARM, issue https://github.com/ClickHouse/ClickHouse/issues/63855")
38+
@pytest.mark.skipif(
39+
helpers.cluster.is_arm(),
40+
reason="Fails on ARM, issue https://github.com/ClickHouse/ClickHouse/issues/63855",
41+
)
3942
def test_send_segfault(started_node):
4043
# NOTE: another option is to increase waiting time.
4144
if (

0 commit comments

Comments
 (0)