chore: introduce new mark
This commit is contained in:
parent
531abf4cb5
commit
c0ea22ede0
|
@ -20,6 +20,7 @@ markers =
|
||||||
onboarding: All tests related to onboarding
|
onboarding: All tests related to onboarding
|
||||||
keycard: All tests related to Keycard functionality
|
keycard: All tests related to Keycard functionality
|
||||||
wallet: All tests related to wallet functionality
|
wallet: All tests related to wallet functionality
|
||||||
|
transaction: All tests which are doing transactions
|
||||||
online_identifier: All tests related to online_identifier functionality
|
online_identifier: All tests related to online_identifier functionality
|
||||||
timeout: Apply timeout when test is running longer than expected
|
timeout: Apply timeout when test is running longer than expected
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,7 @@ def keys_screen(main_window) -> KeysView:
|
||||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704597',
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704597',
|
||||||
'Settings -> ENS usernames: buy ENS name on testnet')
|
'Settings -> ENS usernames: buy ENS name on testnet')
|
||||||
@pytest.mark.case(704597)
|
@pytest.mark.case(704597)
|
||||||
|
@pytest.mark.transaction
|
||||||
@pytest.mark.parametrize('user_account', [constants.user.user_with_funds])
|
@pytest.mark.parametrize('user_account', [constants.user.user_with_funds])
|
||||||
@pytest.mark.parametrize('ens_name', [pytest.param(constants.user.ens_user_name)])
|
@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):
|
def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name):
|
||||||
|
|
|
@ -27,6 +27,7 @@ def keys_screen(main_window) -> KeysView:
|
||||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704527',
|
@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')
|
'Send: can send 0 ETH to address pasted into receiver field with Simple flow')
|
||||||
@pytest.mark.case(704527)
|
@pytest.mark.case(704527)
|
||||||
|
@pytest.mark.transaction
|
||||||
@pytest.mark.parametrize('user_account', [constants.user.user_with_funds])
|
@pytest.mark.parametrize('user_account', [constants.user.user_with_funds])
|
||||||
@pytest.mark.parametrize('receiver_account_address, amount, asset', [
|
@pytest.mark.parametrize('receiver_account_address, amount, asset', [
|
||||||
pytest.param(constants.user.user_account_one.status_address, 0, 'Ether')
|
pytest.param(constants.user.user_account_one.status_address, 0, 'Ether')
|
||||||
|
|
Loading…
Reference in New Issue