From ddea6fb3fd8197bc304464d893a06221fb9e230f Mon Sep 17 00:00:00 2001 From: Valentina Novgorodtceva Date: Thu, 30 May 2024 13:56:28 +0700 Subject: [PATCH] chore: skipped tests dependant on issues with rates limits --- ...est_wallet_settings_watched_addr_include_in_total_balance.py | 2 ++ test/e2e/tests/settings/test_ens_name_purchase.py | 2 ++ .../wallet: assets tab/test_wallet_assets_sorting.py | 2 ++ .../wallet: footer actions/test_footer_actions_send.py | 2 ++ .../wallet: footer actions/test_footer_actions_send_nft.py | 2 ++ 5 files changed, 10 insertions(+) diff --git a/test/e2e/tests/settings/settings_wallet/test_wallet_settings_watched_addr_include_in_total_balance.py b/test/e2e/tests/settings/settings_wallet/test_wallet_settings_watched_addr_include_in_total_balance.py index e442a17d59..253be09d36 100644 --- a/test/e2e/tests/settings/settings_wallet/test_wallet_settings_watched_addr_include_in_total_balance.py +++ b/test/e2e/tests/settings/settings_wallet/test_wallet_settings_watched_addr_include_in_total_balance.py @@ -23,6 +23,8 @@ pytestmark = marks pytest.param('0x7f1502605A2f2Cc01f9f4E7dd55e549954A8cD0C', ''.join(random.choices(string.ascii_letters + string.digits, k=20))) ]) +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14862") +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14509") def test_settings_include_in_total_balance(main_screen: MainWindow, name, watched_address): with (step('Open wallet on main screen and check the total balance for new account is 0')): wallet_main_screen = main_screen.left_panel.open_wallet() diff --git a/test/e2e/tests/settings/test_ens_name_purchase.py b/test/e2e/tests/settings/test_ens_name_purchase.py index 3452bf5843..3315ec6aa1 100644 --- a/test/e2e/tests/settings/test_ens_name_purchase.py +++ b/test/e2e/tests/settings/test_ens_name_purchase.py @@ -31,6 +31,8 @@ def keys_screen(main_window) -> KeysView: @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)]) +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14862") +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14509") def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name): with step('Open import seed phrase view and enter seed phrase'): input_view = keys_screen.open_import_seed_phrase_view().open_seed_phrase_input_view() diff --git a/test/e2e/tests/wallet_main_screen/wallet: assets tab/test_wallet_assets_sorting.py b/test/e2e/tests/wallet_main_screen/wallet: assets tab/test_wallet_assets_sorting.py index 3cdb5068af..eef247b6e5 100644 --- a/test/e2e/tests/wallet_main_screen/wallet: assets tab/test_wallet_assets_sorting.py +++ b/test/e2e/tests/wallet_main_screen/wallet: assets tab/test_wallet_assets_sorting.py @@ -28,6 +28,8 @@ pytestmark = marks pytest.param('0xFf58d746A67C2E42bCC07d6B3F58406E8837E883', 'AssetsCollectibles', 'Dai Stablecoin', 'WEENUS Token', 'Status Test Token', 'Ether') ]) +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14862") +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14509") def test_wallet_sort_assets(main_screen: MainWindow, address, name, dai, weenus, stt, eth): with step('Turn on Testnet mode'): networks = main_screen.left_panel.open_settings().left_panel.open_wallet_settings().open_networks() diff --git a/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py b/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py index 07e86e9667..222a20f466 100644 --- a/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py +++ b/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py @@ -31,6 +31,8 @@ def keys_screen(main_window) -> KeysView: pytest.param(constants.user.user_account_one.status_address, 0, 'Ether', 'Assets') ]) @pytest.mark.timeout(timeout=120) +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14862") +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14509") def test_wallet_send_0_eth(keys_screen, main_window, user_account, receiver_account_address, amount, asset, tab): with step('Open import seed phrase view and enter seed phrase'): input_view = keys_screen.open_import_seed_phrase_view().open_seed_phrase_input_view() diff --git a/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send_nft.py b/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send_nft.py index 58e4d9a71b..6fb2de9889 100644 --- a/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send_nft.py +++ b/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send_nft.py @@ -31,6 +31,8 @@ def keys_screen(main_window) -> KeysView: pytest.param('Collectibles', constants.user.user_with_funds.status_address, 1, 'Panda') ]) @pytest.mark.timeout(timeout=120) +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14862") +@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/14509") def test_wallet_send_nft(keys_screen, main_window, user_account, tab, receiver_account_address, amount, collectible): with step('Open import seed phrase view and enter seed phrase'): input_view = keys_screen.open_import_seed_phrase_view().open_seed_phrase_input_view()