chore: reduce the critical set because of file dialog issue on release CI
https://github.com/status-im/status-desktop/issues/13483
This commit is contained in:
parent
579cfb4f02
commit
2c22faa780
|
@ -12,7 +12,7 @@ from gui.main_window import MainWindow
|
|||
pytestmark = marks
|
||||
|
||||
|
||||
@pytest.mark.critical
|
||||
# @pytest.mark.critical TODO: https://github.com/status-im/status-desktop/issues/13483
|
||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703084', 'Create community')
|
||||
@pytest.mark.case(703084)
|
||||
@pytest.mark.parametrize('params', [constants.community_params])
|
||||
|
|
|
@ -11,10 +11,11 @@ from . import marks
|
|||
pytestmark = marks
|
||||
|
||||
|
||||
# TODO: https://github.com/status-im/status-desktop/issues/13483
|
||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703226', 'Add category')
|
||||
@pytest.mark.case(703226)
|
||||
@pytest.mark.parametrize('category_name, general_checkbox', [
|
||||
pytest.param('Category in general', True, marks=pytest.mark.critical),
|
||||
pytest.param('Category in general', True),
|
||||
pytest.param('Category out of general', False)
|
||||
])
|
||||
def test_create_community_category(main_screen: MainWindow, category_name, general_checkbox):
|
||||
|
|
|
@ -29,7 +29,7 @@ def keys_screen(main_window) -> KeysView:
|
|||
|
||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703421', 'Generate new keys')
|
||||
@pytest.mark.case(703421)
|
||||
@pytest.mark.critical
|
||||
# @pytest.mark.critical TODO: https://github.com/status-im/status-desktop/issues/13483
|
||||
@pytest.mark.parametrize('user_name, password, user_image, zoom, shift', [
|
||||
pytest.param(
|
||||
''.join((random.choice(
|
||||
|
|
Loading…
Reference in New Issue