mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-16 08:37:12 +00:00
chore: introduce timeout mark and update requirements
This commit is contained in:
parent
fa5a0cbfb2
commit
fe4325b5e1
@ -48,3 +48,5 @@ it will be shown as XPASS (unexpectedly passing) in report, which will indicate
|
||||
if will be shown as passed in report normally. If the test fails, then the total run wont be failed, but
|
||||
the corresponding test will be marked as `xfail` in the report. It is done for a few tests that are not super
|
||||
stable yet, but passes most of the time. This mark should be used with caution and in case of real need only.
|
||||
- `timeout(timeout=180, method="thread")`, to catch excessively long test durations like deadlocked or hanging tests.
|
||||
This is done by `pytest-timeout` plugin
|
@ -20,4 +20,5 @@ markers =
|
||||
keycard: All tests related to Keycard functionality
|
||||
wallet: All tests related to wallet functionality
|
||||
online_identifier: All tests related to online_identifier functionality
|
||||
timeout: Apply timeout when test is running longer than expected
|
||||
|
||||
|
@ -10,3 +10,4 @@ testrail-api==1.12.0
|
||||
pyperclip==1.8.2
|
||||
pytest-rerunfailures==11.1.2
|
||||
pytest-ignore-flaky==2.1.0
|
||||
pytest-timeout==2.2.0
|
||||
|
@ -11,6 +11,7 @@ from gui.main_window import MainWindow
|
||||
pytestmark = marks
|
||||
|
||||
|
||||
@pytest.mark.timeout(timeout=180, method="thread")
|
||||
@pytest.mark.critical
|
||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703005',
|
||||
'Change the password and login with new password')
|
||||
|
Loading…
x
Reference in New Issue
Block a user