From 43b6a935a9876de7c3bfd8eb24ea7b9d11bc40a2 Mon Sep 17 00:00:00 2001 From: Dmitry Rodionov <d.rodionov@picodata.io> Date: Mon, 16 Dec 2024 12:19:50 +0300 Subject: [PATCH] test: mark test_large_snapshot xfail It fails a lot in CI lately. There are several open tickets: https://git.picodata.io/core/picodata/-/issues/779 https://git.picodata.io/core/picodata/-/issues/1204 --- test/int/test_snapshot.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/int/test_snapshot.py b/test/int/test_snapshot.py index b9ad807e7e..f73baca03a 100644 --- a/test/int/test_snapshot.py +++ b/test/int/test_snapshot.py @@ -1,5 +1,7 @@ import time +import pytest + from conftest import Cluster, Retriable @@ -66,6 +68,9 @@ def assert_eq(lhs, rhs): assert lhs == rhs +@pytest.mark.xfail( + reason="flaky, see: https://git.picodata.io/core/picodata/-/issues/779" +) def test_large_snapshot(cluster: Cluster): i1, i2, i3, i4 = cluster.deploy(instance_count=4) -- GitLab