chore: temp disable keycard tests
This commit is contained in:
parent
44d04bb514
commit
2c70062dc8
|
@ -20,6 +20,7 @@ pytestmark = marks
|
|||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703627', 'Check whats on a Keycard')
|
||||
@pytest.mark.case(703627)
|
||||
@pytest.mark.parametrize('user_account', [constants.user.user_account_one])
|
||||
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/15741')
|
||||
def test_check_whats_on_keycard(main_screen: MainWindow, user_account):
|
||||
main_screen.prepare()
|
||||
timeout = configs.timeouts.UI_LOAD_TIMEOUT_MSEC
|
||||
|
|
|
@ -23,6 +23,7 @@ pytestmark = marks
|
|||
[pytest.param('Test Account', '#216266', 'sunglasses', '😎 ', 'Test Account2', '#2a4af5',
|
||||
'thumbsup', '👍 ', 'Test Account3', '#ff7d46', 'cool', '🆒 ')
|
||||
])
|
||||
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/15741')
|
||||
def test_create_keycard_account_with_new_seed_phrase(main_screen: MainWindow, name, color, emoji_name, emoji, name1,
|
||||
color1, emoji1_name, emoji1, name2, color2, emoji2_name, emoji2):
|
||||
timeout = configs.timeouts.UI_LOAD_TIMEOUT_MSEC
|
||||
|
|
|
@ -17,6 +17,7 @@ pytestmark = marks
|
|||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703628', 'Factory reset a Keycard')
|
||||
@pytest.mark.case(703628)
|
||||
@pytest.mark.parametrize('user_account', [constants.user.user_account_one])
|
||||
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/15741')
|
||||
def test_factory_reset_keycard(main_screen: MainWindow, user_account):
|
||||
main_screen.prepare()
|
||||
timeout = configs.timeouts.UI_LOAD_TIMEOUT_MSEC
|
||||
|
@ -70,6 +71,7 @@ def test_factory_reset_keycard(main_screen: MainWindow, user_account):
|
|||
'Factory reset a Keycard: incorrect PIN')
|
||||
@pytest.mark.case(704606)
|
||||
@pytest.mark.parametrize('user_account', [constants.user.user_account_one])
|
||||
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/15741')
|
||||
def test_factory_reset_keycard_incorrect_pin(main_screen: MainWindow, user_account):
|
||||
main_screen.prepare()
|
||||
incorrect_pin = Keycard.KEYCARD_INCORRECT_PIN.value
|
||||
|
|
|
@ -21,6 +21,7 @@ pytestmark = marks
|
|||
'Import or restore a Keycard via a seed phrase')
|
||||
@pytest.mark.case(703625)
|
||||
@pytest.mark.parametrize('user_account', [constants.user.user_account_one])
|
||||
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/15741')
|
||||
def test_import_restore_keycard_via_seed_phrase(main_screen: MainWindow, user_account):
|
||||
timeout = configs.timeouts.UI_LOAD_TIMEOUT_MSEC
|
||||
pin = Keycard.KEYCARD_PIN.value
|
||||
|
|
|
@ -26,6 +26,7 @@ pytestmark = marks
|
|||
@pytest.mark.parametrize('user_account', [constants.user.user_account_one])
|
||||
@pytest.mark.parametrize('account_name', [pytest.param('Account 1')])
|
||||
@pytest.mark.timeout(timeout=210)
|
||||
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/15741')
|
||||
def test_setup_keycard_with_existing_account(main_screen: MainWindow, user_account, account_name):
|
||||
timeout = configs.timeouts.UI_LOAD_TIMEOUT_MSEC
|
||||
first_details = '{}'
|
||||
|
|
|
@ -18,6 +18,7 @@ pytestmark = marks
|
|||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704607', 'Unlock Keycard')
|
||||
@pytest.mark.case(704607)
|
||||
@pytest.mark.parametrize('user_account', [constants.user.user_with_random_attributes_1])
|
||||
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/15741')
|
||||
def test_unlock_keycard_using_correct_puk(main_screen: MainWindow, user_account):
|
||||
timeout = configs.timeouts.UI_LOAD_TIMEOUT_MSEC
|
||||
pin = Keycard.KEYCARD_PIN.value
|
||||
|
@ -82,6 +83,7 @@ def test_unlock_keycard_using_correct_puk(main_screen: MainWindow, user_account)
|
|||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704608', 'Unlock Keycard: incorrect PUK')
|
||||
@pytest.mark.case(704608)
|
||||
@pytest.mark.parametrize('user_account', [constants.user.user_with_random_attributes_1])
|
||||
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/15741')
|
||||
def test_unlock_keycard_using_incorrect_puk(main_screen: MainWindow, user_account):
|
||||
timeout = configs.timeouts.UI_LOAD_TIMEOUT_MSEC
|
||||
pin = Keycard.KEYCARD_PIN.value
|
||||
|
|
Loading…
Reference in New Issue