chore(@tests): disable broken tests temporarily
This commit is contained in:
parent
e3c750bf4d
commit
2013b784db
|
@ -19,6 +19,7 @@ pytestmark = allure.suite("Communities")
|
|||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703084', 'Create community')
|
||||
@pytest.mark.case(703084)
|
||||
@pytest.mark.parametrize('params', [constants.community_params])
|
||||
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/167")
|
||||
def test_create_community(user_account, main_screen: MainWindow, params):
|
||||
with step('Create community'):
|
||||
communities_portal = main_screen.left_panel.open_communities_portal()
|
||||
|
@ -67,6 +68,7 @@ def test_create_community(user_account, main_screen: MainWindow, params):
|
|||
},
|
||||
|
||||
])
|
||||
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/167")
|
||||
def test_edit_community_separately(main_screen, community_params):
|
||||
main_screen.create_community(constants.community_params)
|
||||
|
||||
|
@ -164,6 +166,7 @@ def test_create_community_channel(main_screen: MainWindow, channel_name, channel
|
|||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703050', 'Edit community channel')
|
||||
@pytest.mark.case(703050)
|
||||
@pytest.mark.parametrize('channel_name, channel_description, channel_emoji', [('Channel', 'Description', 'sunglasses')])
|
||||
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/167")
|
||||
def test_edit_community_channel(main_screen, channel_name, channel_description, channel_emoji):
|
||||
main_screen.create_community(constants.community_params)
|
||||
community_screen = CommunityScreen()
|
||||
|
|
|
@ -16,6 +16,7 @@ from scripts.tools import image
|
|||
pytest.param('0xea123F7beFF45E3C9fdF54B324c29DBdA14a639A', 'Status account',
|
||||
'WatchOnly', '#2a4af5', 'sunglasses', 'Generated', '#216266', 'thumbsup')
|
||||
])
|
||||
@pytest.mark.skip(reaason="https://github.com/status-im/desktop-qa-automation/issues/165")
|
||||
def test_change_account_order_by_drag_and_drop(main_screen: MainWindow, user_account, address: str, default_name,
|
||||
name: str, color: str, emoji: str, second_name: str, second_color: str,
|
||||
second_emoji: str):
|
||||
|
|
|
@ -11,6 +11,7 @@ from gui.main_window import MainWindow
|
|||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703515',
|
||||
'Network: Network: Editing network -> Restore defaults')
|
||||
@pytest.mark.case(703515)
|
||||
@pytest.mark.skip(reaason="https://github.com/status-im/desktop-qa-automation/issues/165")
|
||||
def test_settings_networks_edit_restore_defaults(main_screen: MainWindow):
|
||||
networks = main_screen.left_panel.open_settings().left_panel.open_wallet_settings().open_networks()
|
||||
|
||||
|
|
Loading…
Reference in New Issue