chore: remove flaky mark from change password test
- removed the flaky mark from change password test - increased timeout for 30 seconds just now (i communicated that to be enough) We need this test to show actual result , because we missed https://github.com/status-im/status-desktop/issues/13748 because of this
This commit is contained in:
parent
68de453760
commit
7e139e27ae
|
@ -20,8 +20,8 @@ pytestmark = marks
|
||||||
@pytest.mark.parametrize('user_account, user_account_changed_password',
|
@pytest.mark.parametrize('user_account, user_account_changed_password',
|
||||||
[pytest.param(constants.user.user_account_one,
|
[pytest.param(constants.user.user_account_one,
|
||||||
constants.user.user_account_one_changed_password)])
|
constants.user.user_account_one_changed_password)])
|
||||||
@pytest.mark.flaky
|
@pytest.mark.critical
|
||||||
# reason='https://github.com/status-im/status-desktop/issues/13013'
|
# TODO: follow up on 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):
|
def test_change_password_and_login(aut: AUT, main_screen: MainWindow, user_account, user_account_changed_password):
|
||||||
with step('Open profile settings'):
|
with step('Open profile settings'):
|
||||||
settings_scr = main_screen.left_panel.open_settings()
|
settings_scr = main_screen.left_panel.open_settings()
|
||||||
|
@ -36,7 +36,7 @@ def test_change_password_and_login(aut: AUT, main_screen: MainWindow, user_accou
|
||||||
ChangePasswordPopup().click_re_encrypt_data_restart_button()
|
ChangePasswordPopup().click_re_encrypt_data_restart_button()
|
||||||
|
|
||||||
with step('Verify the application process is not running'):
|
with step('Verify the application process is not running'):
|
||||||
psutil.Process(aut.pid).wait(timeout=10)
|
psutil.Process(aut.pid).wait(timeout=30)
|
||||||
|
|
||||||
with step('Restart application'):
|
with step('Restart application'):
|
||||||
aut.restart()
|
aut.restart()
|
||||||
|
|
Loading…
Reference in New Issue