From de663cf5d59a51768a32c551d84f137fad9a346e Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Fri, 3 Jan 2025 15:28:52 +0100 Subject: [PATCH] feat: don't lock funds on testnets Skip tests that keep funds locked on testnets. --- .../tests/tests_plutus/test_spend_build.py | 3 --- .../tests_plutus/test_spend_compat_build.py | 1 - .../tests_plutus/test_spend_compat_raw.py | 2 -- .../tests_plutus/test_spend_datum_build.py | 4 ---- .../tests_plutus/test_spend_datum_raw.py | 2 -- .../tests_plutus/test_spend_negative_build.py | 18 ---------------- .../tests_plutus/test_spend_negative_raw.py | 21 ------------------- .../tests/tests_plutus/test_spend_raw.py | 4 ---- .../test_spend_collateral_build.py | 2 -- .../test_spend_collateral_raw.py | 2 -- .../tests_plutus_v2/test_spend_datum_build.py | 3 --- .../tests_plutus_v2/test_spend_datum_raw.py | 3 --- .../test_spend_ref_inputs_build.py | 2 -- .../test_spend_ref_inputs_raw.py | 2 -- .../test_spend_ref_scripts_build.py | 4 ---- .../test_spend_ref_scripts_raw.py | 4 ---- .../test_spend_secp256k1_build.py | 3 +-- 17 files changed, 1 insertion(+), 79 deletions(-) diff --git a/cardano_node_tests/tests/tests_plutus/test_spend_build.py b/cardano_node_tests/tests/tests_plutus/test_spend_build.py index 25356a846..a2f12748e 100644 --- a/cardano_node_tests/tests/tests_plutus/test_spend_build.py +++ b/cardano_node_tests/tests/tests_plutus/test_spend_build.py @@ -628,7 +628,6 @@ def test_two_scripts_spending( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_always_fails( self, cluster: clusterlib.ClusterLib, @@ -689,7 +688,6 @@ def test_always_fails( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_script_invalid( self, cluster: clusterlib.ClusterLib, @@ -846,7 +844,6 @@ def test_txout_token_locking( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_partial_spending( self, diff --git a/cardano_node_tests/tests/tests_plutus/test_spend_compat_build.py b/cardano_node_tests/tests/tests_plutus/test_spend_compat_build.py index 4eb986ab0..6eb850906 100644 --- a/cardano_node_tests/tests/tests_plutus/test_spend_compat_build.py +++ b/cardano_node_tests/tests/tests_plutus/test_spend_compat_build.py @@ -47,7 +47,6 @@ class TestCompatibility: reason="doesn't run with Tx era > Alonzo", ) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_plutusv2_old_tx_era( self, diff --git a/cardano_node_tests/tests/tests_plutus/test_spend_compat_raw.py b/cardano_node_tests/tests/tests_plutus/test_spend_compat_raw.py index b53fcbec8..31e671003 100644 --- a/cardano_node_tests/tests/tests_plutus/test_spend_compat_raw.py +++ b/cardano_node_tests/tests/tests_plutus/test_spend_compat_raw.py @@ -46,7 +46,6 @@ class TestCompatibility: reason="doesn't run with Tx era > Alonzo", ) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_plutusv2_old_tx_era( self, @@ -100,7 +99,6 @@ def test_plutusv2_old_tx_era( reason="runs only with Tx era < Alonzo", ) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_plutusv1_old_tx_era( self, diff --git a/cardano_node_tests/tests/tests_plutus/test_spend_datum_build.py b/cardano_node_tests/tests/tests_plutus/test_spend_datum_build.py index b8788ca43..2247452c2 100644 --- a/cardano_node_tests/tests/tests_plutus/test_spend_datum_build.py +++ b/cardano_node_tests/tests/tests_plutus/test_spend_datum_build.py @@ -51,7 +51,6 @@ class TestDatum: @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_datum_on_key_credential_address( self, @@ -188,7 +187,6 @@ def pbt_script_addresses( @pytest.mark.parametrize("address_type", ("script_address", "key_address")) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_no_datum_txout( self, cluster: clusterlib.ClusterLib, @@ -329,7 +327,6 @@ def test_lock_tx_invalid_datum( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_unlock_tx_wrong_datum( self, cluster: clusterlib.ClusterLib, @@ -390,7 +387,6 @@ def test_unlock_tx_wrong_datum( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_unlock_non_script_utxo( self, cluster: clusterlib.ClusterLib, diff --git a/cardano_node_tests/tests/tests_plutus/test_spend_datum_raw.py b/cardano_node_tests/tests/tests_plutus/test_spend_datum_raw.py index a27e617ad..378e92399 100644 --- a/cardano_node_tests/tests/tests_plutus/test_spend_datum_raw.py +++ b/cardano_node_tests/tests/tests_plutus/test_spend_datum_raw.py @@ -47,7 +47,6 @@ class TestDatum: @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_datum_on_key_credential_address( self, @@ -126,7 +125,6 @@ def pbt_script_addresses( @pytest.mark.parametrize("address_type", ("script_address", "key_address")) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_no_datum_txout( self, cluster: clusterlib.ClusterLib, diff --git a/cardano_node_tests/tests/tests_plutus/test_spend_negative_build.py b/cardano_node_tests/tests/tests_plutus/test_spend_negative_build.py index f692e6f12..e522067fd 100644 --- a/cardano_node_tests/tests/tests_plutus/test_spend_negative_build.py +++ b/cardano_node_tests/tests/tests_plutus/test_spend_negative_build.py @@ -52,7 +52,6 @@ class TestNegative: @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_wrong_script( self, @@ -108,7 +107,6 @@ def test_wrong_script( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_no_script( self, @@ -162,7 +160,6 @@ def test_no_script( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_collateral_w_tokens( self, @@ -238,7 +235,6 @@ def test_collateral_w_tokens( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_same_collateral_txin( self, @@ -312,7 +308,6 @@ def test_same_collateral_txin( ) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_invalid_guessing_game( self, @@ -386,7 +381,6 @@ def test_invalid_guessing_game( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_two_scripts_spending_one_fail( self, cluster: clusterlib.ClusterLib, @@ -660,7 +654,6 @@ def _int_out_of_range( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_wrong_value_inside_range( self, cluster: clusterlib.ClusterLib, @@ -726,7 +719,6 @@ def test_wrong_value_inside_range( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_wrong_value_above_range( self, cluster: clusterlib.ClusterLib, @@ -764,7 +756,6 @@ def test_wrong_value_above_range( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_wrong_value_bellow_range( self, cluster: clusterlib.ClusterLib, @@ -801,7 +792,6 @@ def test_wrong_value_bellow_range( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_wrong_type( self, cluster: clusterlib.ClusterLib, @@ -855,7 +845,6 @@ def test_wrong_type( @common.hypothesis_settings(max_examples=100) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_too_big( self, cluster: clusterlib.ClusterLib, @@ -912,7 +901,6 @@ def test_too_big( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_typed_int_bytes_declared( self, cluster: clusterlib.ClusterLib, @@ -969,7 +957,6 @@ def test_json_schema_typed_int_bytes_declared( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_untyped_int_bytes_declared( self, cluster: clusterlib.ClusterLib, @@ -1026,7 +1013,6 @@ def test_json_schema_untyped_int_bytes_declared( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_typed_bytes_int_declared( self, cluster: clusterlib.ClusterLib, @@ -1084,7 +1070,6 @@ def test_json_schema_typed_bytes_int_declared( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_untyped_bytes_int_declared( self, cluster: clusterlib.ClusterLib, @@ -1142,7 +1127,6 @@ def test_json_schema_untyped_bytes_int_declared( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_invalid_json( self, cluster: clusterlib.ClusterLib, @@ -1196,7 +1180,6 @@ def test_invalid_json( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_typed_invalid_type( self, cluster: clusterlib.ClusterLib, @@ -1255,7 +1238,6 @@ def test_json_schema_typed_invalid_type( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_untyped_invalid_type( self, cluster: clusterlib.ClusterLib, diff --git a/cardano_node_tests/tests/tests_plutus/test_spend_negative_raw.py b/cardano_node_tests/tests/tests_plutus/test_spend_negative_raw.py index 6249bbf6d..88de3c31b 100644 --- a/cardano_node_tests/tests/tests_plutus/test_spend_negative_raw.py +++ b/cardano_node_tests/tests/tests_plutus/test_spend_negative_raw.py @@ -87,7 +87,6 @@ def fund_execution_units_above_limit( return script_utxos, collateral_utxos, plutus_op @allure.link(helpers.get_vcs_link()) - @pytest.mark.testnets @pytest.mark.parametrize( "variant", ( @@ -98,7 +97,6 @@ def fund_execution_units_above_limit( ) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_invalid_guessing_game( self, cluster: clusterlib.ClusterLib, @@ -165,7 +163,6 @@ def test_invalid_guessing_game( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_wrong_script( self, @@ -223,7 +220,6 @@ def test_wrong_script( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_no_script( self, @@ -276,7 +272,6 @@ def test_no_script( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_collateral_w_tokens( self, @@ -343,7 +338,6 @@ def test_collateral_w_tokens( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_same_collateral_txin( self, @@ -397,7 +391,6 @@ def test_same_collateral_txin( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_collateral_percent( self, @@ -456,7 +449,6 @@ def test_collateral_percent( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_two_scripts_spending_one_fail( self, cluster: clusterlib.ClusterLib, @@ -627,7 +619,6 @@ def test_two_scripts_spending_one_fail( indirect=True, ) @pytest.mark.smoke - @pytest.mark.testnets def test_execution_units_above_limit( self, cluster: clusterlib.ClusterLib, @@ -904,7 +895,6 @@ def _int_out_of_range( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_wrong_value_inside_range( self, cluster: clusterlib.ClusterLib, @@ -991,7 +981,6 @@ def test_wrong_value_inside_range( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_wrong_value_bellow_range( self, cluster: clusterlib.ClusterLib, @@ -1036,7 +1025,6 @@ def test_wrong_value_bellow_range( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_wrong_value_above_range( self, cluster: clusterlib.ClusterLib, @@ -1080,7 +1068,6 @@ def test_wrong_value_above_range( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_wrong_type( self, cluster: clusterlib.ClusterLib, @@ -1159,7 +1146,6 @@ def test_wrong_type( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_too_big( self, cluster: clusterlib.ClusterLib, @@ -1237,7 +1223,6 @@ def test_too_big( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_typed_int_bytes_declared( self, cluster: clusterlib.ClusterLib, @@ -1279,7 +1264,6 @@ def test_json_schema_typed_int_bytes_declared( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_untyped_int_bytes_declared( self, cluster: clusterlib.ClusterLib, @@ -1320,7 +1304,6 @@ def test_json_schema_untyped_int_bytes_declared( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_typed_bytes_int_declared( self, cluster: clusterlib.ClusterLib, @@ -1361,7 +1344,6 @@ def test_json_schema_typed_bytes_int_declared( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_untyped_bytes_int_declared( self, cluster: clusterlib.ClusterLib, @@ -1402,7 +1384,6 @@ def test_json_schema_untyped_bytes_int_declared( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_invalid_json( self, cluster: clusterlib.ClusterLib, @@ -1443,7 +1424,6 @@ def test_invalid_json( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_typed_invalid_type( self, cluster: clusterlib.ClusterLib, @@ -1490,7 +1470,6 @@ def test_json_schema_typed_invalid_type( @common.hypothesis_settings(max_examples=200) @common.PARAM_PLUTUS_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_json_schema_untyped_invalid_type( self, cluster: clusterlib.ClusterLib, diff --git a/cardano_node_tests/tests/tests_plutus/test_spend_raw.py b/cardano_node_tests/tests/tests_plutus/test_spend_raw.py index cfd020a26..aa3bcffe0 100644 --- a/cardano_node_tests/tests/tests_plutus/test_spend_raw.py +++ b/cardano_node_tests/tests/tests_plutus/test_spend_raw.py @@ -623,7 +623,6 @@ def test_two_scripts_spending( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_always_fails( self, cluster: clusterlib.ClusterLib, @@ -683,7 +682,6 @@ def test_always_fails( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets def test_script_invalid( self, cluster: clusterlib.ClusterLib, @@ -812,7 +810,6 @@ def test_txout_token_locking( @allure.link(helpers.get_vcs_link()) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_partial_spending( self, @@ -904,7 +901,6 @@ def test_partial_spending( @pytest.mark.parametrize("scenario", ("max", "max+1", "none")) @common.PARAM_PLUTUS3_VERSION @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_collaterals( self, diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_collateral_build.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_collateral_build.py index 25c05d378..7435a7969 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_collateral_build.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_collateral_build.py @@ -124,7 +124,6 @@ def _build_spend_locked_txin( ids=("using_total_collateral", "without_total_collateral"), ) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_with_total_return_collateral( self, @@ -241,7 +240,6 @@ def test_with_total_return_collateral( ids=("using_return_collateral", "without_return_collateral"), ) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_collateral_with_tokens( self, diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_collateral_raw.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_collateral_raw.py index ff8ef578b..339e490e5 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_collateral_raw.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_collateral_raw.py @@ -56,7 +56,6 @@ class TestCollateralOutput: ids=("using_total_collateral", "without_total_collateral"), ) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_with_total_return_collateral( self, @@ -202,7 +201,6 @@ def test_with_total_return_collateral( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_collateral_with_tokens( self, diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_datum_build.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_datum_build.py index 742ec1c14..15d92df4f 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_datum_build.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_datum_build.py @@ -218,7 +218,6 @@ def test_lock_tx_invalid_datum( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_lock_tx_v1_script( self, @@ -290,7 +289,6 @@ def test_lock_tx_v1_script( @hypothesis.given(datum_content=st.text(alphabet=string.ascii_letters, min_size=65)) @common.hypothesis_settings(max_examples=100) @pytest.mark.smoke - @pytest.mark.testnets def test_lock_tx_big_datum( self, cluster: clusterlib.ClusterLib, @@ -343,7 +341,6 @@ def test_lock_tx_big_datum( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_lock_tx_datum_as_witness( self, cluster: clusterlib.ClusterLib, payment_addrs: list[clusterlib.AddressRecord] diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_datum_raw.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_datum_raw.py index 0b151f3f1..a1cba6188 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_datum_raw.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_datum_raw.py @@ -130,7 +130,6 @@ def test_lock_tx_invalid_datum( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_lock_tx_v1_script( self, @@ -220,7 +219,6 @@ def test_lock_tx_v1_script( @hypothesis.given(datum_content=st.text(alphabet=string.ascii_letters, min_size=65)) @common.hypothesis_settings(max_examples=200) @pytest.mark.smoke - @pytest.mark.testnets def test_lock_tx_big_datum( self, cluster: clusterlib.ClusterLib, @@ -276,7 +274,6 @@ def test_lock_tx_big_datum( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_lock_tx_datum_as_witness( self, cluster: clusterlib.ClusterLib, payment_addrs: list[clusterlib.AddressRecord] diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_inputs_build.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_inputs_build.py index cb051d515..2cc9d9940 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_inputs_build.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_inputs_build.py @@ -411,7 +411,6 @@ class TestNegativeReadonlyReferenceInputs: @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_reference_spent_output( self, @@ -523,7 +522,6 @@ def test_reference_spent_output( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_v1_script_with_reference_input( self, diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_inputs_raw.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_inputs_raw.py index 5eafa1386..0c751a284 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_inputs_raw.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_inputs_raw.py @@ -315,7 +315,6 @@ class TestNegativeReadonlyReferenceInputs: @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_reference_spent_output( self, @@ -422,7 +421,6 @@ def test_reference_spent_output( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_v1_script_with_reference_input( self, cluster: clusterlib.ClusterLib, payment_addrs: list[clusterlib.AddressRecord] diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_scripts_build.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_scripts_build.py index bb2070371..45cdfac2d 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_scripts_build.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_scripts_build.py @@ -740,7 +740,6 @@ def test_not_a_script( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets def test_two_scripts_one_fail( self, cluster: clusterlib.ClusterLib, @@ -891,7 +890,6 @@ def test_two_scripts_one_fail( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_lock_tx_v1_reference_script( self, @@ -968,7 +966,6 @@ def test_lock_tx_v1_reference_script( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets def test_v1_attached_v2_reference( self, cluster: clusterlib.ClusterLib, @@ -1115,7 +1112,6 @@ def test_v1_attached_v2_reference( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_lock_byron_reference_script( self, diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_scripts_raw.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_scripts_raw.py index 9c6598210..c040dceac 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_scripts_raw.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_ref_scripts_raw.py @@ -721,7 +721,6 @@ def test_not_a_script( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets def test_two_scripts_one_fail( self, cluster: clusterlib.ClusterLib, @@ -879,7 +878,6 @@ def test_two_scripts_one_fail( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_lock_tx_v1_reference_script( self, @@ -974,7 +972,6 @@ def test_lock_tx_v1_reference_script( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets def test_v1_attached_v2_reference( self, cluster: clusterlib.ClusterLib, @@ -1125,7 +1122,6 @@ def test_v1_attached_v2_reference( @allure.link(helpers.get_vcs_link()) @pytest.mark.smoke - @pytest.mark.testnets @pytest.mark.dbsync def test_lock_byron_reference_script( self, diff --git a/cardano_node_tests/tests/tests_plutus_v2/test_spend_secp256k1_build.py b/cardano_node_tests/tests/tests_plutus_v2/test_spend_secp256k1_build.py index 38ab2319d..4e222613f 100644 --- a/cardano_node_tests/tests/tests_plutus_v2/test_spend_secp256k1_build.py +++ b/cardano_node_tests/tests/tests_plutus_v2/test_spend_secp256k1_build.py @@ -223,7 +223,6 @@ def test_use_secp_builtin_functions( ) @common.hypothesis_settings(max_examples=200) @pytest.mark.smoke - @pytest.mark.testnets def test_overspending_execution_budget( self, cluster: clusterlib.ClusterLib, @@ -233,7 +232,7 @@ def test_overspending_execution_budget( ): """Try to build a transaction with a plutus script that overspend the execution budget. - * Expect failure. + Expect failure. """ # Create the necessary Tx outputs