chore: remove change password test from critical suite

Remove `@pytest.critical` mark from `test_settings_profile_change_password.py`. The test is timing out very often now (addressed in https://github.com/status-im/status-desktop/issues/13013)

This test will be still executed in nightly runs
This commit is contained in:
Anastasiya Semenkevich 2024-01-10 11:30:32 +03:00 committed by Anastasiya
parent 4db703f2b3
commit 0cdadf063e
1 changed files with 3 additions and 4 deletions

View File

@ -11,16 +11,15 @@ from gui.main_window import MainWindow
pytestmark = marks
@pytest.mark.timeout(timeout=180, method="thread")
@pytest.mark.critical
@pytest.mark.timeout(timeout=180)
# @pytest.mark.critical
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703005',
'Change the password and login with new password')
@pytest.mark.case(703005)
@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
@pytest.mark.xfail(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()