From b4d32df1db99c62255e30cbb8d27db968f08a854 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 27 Jan 2025 18:59:08 +0800 Subject: [PATCH] fix: skip tests pending on Nomos node changes --- tests/data_integrity/test_data_integrity.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/data_integrity/test_data_integrity.py b/tests/data_integrity/test_data_integrity.py index 80eba22..6afc39a 100644 --- a/tests/data_integrity/test_data_integrity.py +++ b/tests/data_integrity/test_data_integrity.py @@ -7,6 +7,7 @@ from src.test_data import DATA_TO_DISPERSE class TestDataIntegrity(StepsDataAvailability): main_nodes = [] + @pytest.mark.skip(reason="Waiting for PR https://github.com/logos-co/nomos-node/pull/994") @pytest.mark.usefixtures("setup_5_node_cluster") def test_da_identify_retrieve_missing_columns(self): self.disperse_data(DATA_TO_DISPERSE[0], [0] * 31 + [1], [0] * 8) @@ -20,6 +21,7 @@ class TestDataIntegrity(StepsDataAvailability): reconstructed_data = [] assert DATA_TO_DISPERSE[0] == bytes(reconstructed_data).decode("utf-8") + @pytest.mark.skip(reason="Waiting for Nomos testnet images could evolve blockchain") @pytest.mark.usefixtures("setup_2_node_cluster") def test_da_sampling_determines_data_presence(self): self.disperse_data(DATA_TO_DISPERSE[0], [0] * 31 + [1], [0] * 8)