chore: mark password change test as flaky

Reason: https://github.com/status-im/status-desktop/issues/13013
This commit is contained in:
Anastasiya Semenkevich 2023-12-15 18:15:07 +03:00 committed by Anastasiya
parent 0edf28f14d
commit 8b65d1ca43
2 changed files with 3 additions and 1 deletions

View File

@ -37,5 +37,5 @@ class ChangePasswordPopup(BasePopup):
assert driver.waitFor(lambda: self._quit_button.is_visible, 15000), \
f'Sign out and quit button is not visible within 15 seconds'
self._quit_button.click()
except Exception as ex:
except (Exception, AssertionError) as ex:
raise ex

View File

@ -18,6 +18,8 @@ pytestmark = marks
@pytest.mark.parametrize('user_account, user_account_changed_password',
[pytest.param(constants.user.user_account_one,
constants.user.user_account_one_changed_password)])
@pytest.mark.flaky
# reason = 'https://github.com/status-im/status-desktop/issues/13013
def test_change_password_and_login(aut: AUT, main_screen: MainWindow, user_account, user_account_changed_password):
with step('Open profile settings'):
settings_scr = main_screen.left_panel.open_settings().left_panel.open_profile_settings()