From 60eaddda560e0c3ea1438be96272d7222c4c5b9f Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Wed, 12 Nov 2025 18:11:49 +0100 Subject: [PATCH] feat(tests): add upgrade_step3 mark to Plutus V3 test Add the @pytest.mark.upgrade_step3 decorator to the test_plutusv3_builtins method in the Plutus V3 builtins test suite. This enables selective test execution for upgrade step 3 scenarios. --- cardano_node_tests/tests/tests_plutus_v3/test_mint_build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cardano_node_tests/tests/tests_plutus_v3/test_mint_build.py b/cardano_node_tests/tests/tests_plutus_v3/test_mint_build.py index 30215be3e..aeee0a374 100644 --- a/cardano_node_tests/tests/tests_plutus_v3/test_mint_build.py +++ b/cardano_node_tests/tests/tests_plutus_v3/test_mint_build.py @@ -186,6 +186,7 @@ def run_scenario( @allure.link(helpers.get_vcs_link()) @pytest.mark.long @pytest.mark.team_plutus + @pytest.mark.upgrade_step3 def test_plutusv3_builtins( self, update_cost_model: None, # noqa: ARG002