From 701bfe47b54148fdfae35871942dd8a9c2379ffc Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Tue, 18 Jan 2022 22:15:07 +0100 Subject: [PATCH] More testing of `test_stake_snapshot` is still needed The test fails on shelley_qa --- cardano_node_tests/tests/test_cli.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cardano_node_tests/tests/test_cli.py b/cardano_node_tests/tests/test_cli.py index 05aaf69c9..0791ef72b 100644 --- a/cardano_node_tests/tests/test_cli.py +++ b/cardano_node_tests/tests/test_cli.py @@ -122,6 +122,11 @@ def test_tx_view(self, cluster: clusterlib.ClusterLib): assert tx == tx_view_out.strip() @allure.link(helpers.get_vcs_link()) + @pytest.mark.skip(reason="needs more testing") + @pytest.mark.skipif( + VERSIONS.transaction_era != VERSIONS.DEFAULT_TX_ERA, + reason="different TX eras doesn't affect this test", + ) @pytest.mark.order(-1) @pytest.mark.testnets def test_stake_snapshot(self, cluster: clusterlib.ClusterLib):