chore: mark password change test as flaky
Reason: https://github.com/status-im/status-desktop/issues/13013
This commit is contained in:
parent
0edf28f14d
commit
8b65d1ca43
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue