chore: introduce new mark

This commit is contained in:
Anastasiya Semenkevich 2024-04-08 15:30:05 +03:00 committed by Anastasiya
parent 0642347673
commit 79572ab153
3 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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):

View File

@ -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')