Disable wallet tests and syncing test (#351)

* chore: skip wallets tests temp

Possible reason: https://github.com/status-im/status-desktop/issues/12914 is causing crashes, which we don't yet identify as crashes

* chore: skip syncing test temp

https://github.com/status-im/desktop-qa-automation/issues/350
This commit is contained in:
Anastasiya 2023-11-30 14:27:35 +03:00 committed by GitHub
parent 0d85a8e1de
commit 1232ff5ba8
4 changed files with 9 additions and 0 deletions

View File

@ -33,6 +33,7 @@ def sync_screen(main_window) -> SyncCodeView:
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703592', 'Sync device during onboarding')
@pytest.mark.case(703592)
@pytest.mark.parametrize('user_data', [configs.testpath.TEST_USER_DATA / 'user_account_one'])
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/350")
def test_sync_device_during_onboarding(multiple_instance, user_data):
user: UserAccount = constants.user_account_one
main_window = MainWindow()

View File

@ -89,6 +89,7 @@ def test_manage_watch_only_account_context_menu(main_screen: MainWindow, address
pytest.param('GenAcc1', '#2a4af5', 'sunglasses', '1f60e',
'GenAcc1edited', '#216266', 'thumbsup', '1f44d')
])
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/12914")
def test_manage_generated_account(main_screen: MainWindow, user_account,
color: str, emoji: str, emoji_unicode: str,
name: str, new_name: str, new_color: str, new_emoji: str, new_emoji_unicode: str):
@ -150,6 +151,7 @@ def test_manage_generated_account(main_screen: MainWindow, user_account,
pytest.param('N/A', '95', 'Custom path', '#216266', 'sunglasses', '1f60e')
])
@pytest.mark.skip(reason='https://github.com/status-im/desktop-qa-automation/issues/220')
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/12914")
def test_manage_custom_generated_account(main_screen: MainWindow, user_account,
derivation_path: str, generated_address_index: int,
name: str, color: str, emoji: str, emoji_unicode: str):
@ -197,6 +199,7 @@ def test_manage_custom_generated_account(main_screen: MainWindow, user_account,
pytest.param('PrivKeyAcc1', '#2a4af5', 'sunglasses', '1f60e',
'PrivKeyAcc1edited', '#216266', 'thumbsup', '1f44d')
])
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/12914")
def test_private_key_imported_account(main_screen: MainWindow, user_account, address_pair,
name: str, color: str, emoji: str, emoji_unicode: str,
new_name: str, new_color: str, new_emoji: str, new_emoji_unicode: str):
@ -273,6 +276,7 @@ def test_private_key_imported_account(main_screen: MainWindow, user_account, add
'SPAcc12edited', '#216266', 'thumbsup', '1f44d',
'pelican chief sudden oval media rare swamp elephant lawsuit wheat knife initial')
])
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/12914")
def test_seed_phrase_imported_account(main_screen: MainWindow, user_account,
name: str, color: str, emoji: str, emoji_unicode: str,
new_name: str, new_color: str, new_emoji: str, new_emoji_unicode: str,
@ -333,6 +337,7 @@ def test_seed_phrase_imported_account(main_screen: MainWindow, user_account,
'new_name, new_color, new_emoji, new_emoji_unicode, keypair_name', [
pytest.param('SPAcc', '#2a4af5', 'sunglasses', '1f60e',
'SPAccedited', '#216266', 'thumbsup', '1f44d', 'SPKeyPair')])
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/12914")
def test_seed_phrase_generated_account(main_screen: MainWindow, user_account,
name: str, color: str, emoji: str, emoji_unicode: str,
new_name: str, new_color: str, new_emoji: str, new_emoji_unicode: str,
@ -387,6 +392,7 @@ def test_seed_phrase_generated_account(main_screen: MainWindow, user_account,
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703514',
'Choosing Use Keycard when adding account')
@pytest.mark.case(703514)
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/12914")
def test_use_keycard_when_adding_account(main_screen: MainWindow):
with step('Choose continue in keycard settings'):
wallet = main_screen.left_panel.open_wallet()

View File

@ -14,6 +14,7 @@ from gui.main_window import MainWindow
pytest.param('Saved address name before', '0x8397bc3c5a60a1883174f722403d63a8833312b7', 'Saved address name after'),
pytest.param('Ens name before', 'nastya.stateofus.eth', 'Ens name after')
])
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/12914")
def test_manage_saved_address(main_screen: MainWindow, name: str, address: str, new_name: str):
with step('Add new address'):
wallet = main_screen.left_panel.open_wallet()

View File

@ -17,6 +17,7 @@ from gui.main_window import MainWindow
pytest.param('0xea123F7beFF45E3C9fdF54B324c29DBdA14a639A', 'AccWatch1', '#2a4af5',
'sunglasses', '1f60e')
])
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/12914")
def test_wallet_add_acc_add_watched_address(
main_screen: MainWindow, address: str, color: str, emoji: str, emoji_unicode: str,
name: str):