From 79572ab153803d7f9bd9b677dbe037befc8c1e98 Mon Sep 17 00:00:00 2001 From: Anastasiya Semenkevich Date: Mon, 8 Apr 2024 15:30:05 +0300 Subject: [PATCH] chore: introduce new mark --- pytest.ini | 1 + tests/settings/test_ens_name_purchase.py | 1 + .../wallet: footer actions/test_footer_actions_send.py | 1 + 3 files changed, 3 insertions(+) diff --git a/pytest.ini b/pytest.ini index f0a5a4a..3b851d0 100644 --- a/pytest.ini +++ b/pytest.ini @@ -20,6 +20,7 @@ markers = onboarding: All tests related to onboarding keycard: All tests related to Keycard functionality wallet: All tests related to wallet functionality + transaction: All tests which are doing transactions online_identifier: All tests related to online_identifier functionality timeout: Apply timeout when test is running longer than expected diff --git a/tests/settings/test_ens_name_purchase.py b/tests/settings/test_ens_name_purchase.py index f8ee7c1..4269165 100644 --- a/tests/settings/test_ens_name_purchase.py +++ b/tests/settings/test_ens_name_purchase.py @@ -30,6 +30,7 @@ def keys_screen(main_window) -> KeysView: @allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704597', 'Settings -> ENS usernames: buy ENS name on testnet') @pytest.mark.case(704597) +@pytest.mark.transaction @pytest.mark.parametrize('user_account', [constants.user.user_with_funds]) @pytest.mark.parametrize('ens_name', [pytest.param(constants.user.ens_user_name)]) def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name): diff --git a/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py b/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py index 0466b9b..8c20148 100644 --- a/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py +++ b/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py @@ -27,6 +27,7 @@ def keys_screen(main_window) -> KeysView: @allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704527', 'Send: can send 0 ETH to address pasted into receiver field with Simple flow') @pytest.mark.case(704527) +@pytest.mark.transaction @pytest.mark.parametrize('user_account', [constants.user.user_with_funds]) @pytest.mark.parametrize('receiver_account_address, amount, asset', [ pytest.param(constants.user.user_account_one.status_address, 0, 'Ether')