chore: disabled one test because of bug and one because it's need to be fixed (tomorrow)

This commit is contained in:
Valentina Novgorodtceva 2024-02-01 17:29:29 +07:00 committed by Anastasiya
parent ace7e27fc3
commit 472aeed2e7
3 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,7 @@ def test_create_community_channel(main_screen: MainWindow, channel_name, channel
@pytest.mark.case(703050)
@pytest.mark.parametrize('channel_name, channel_description, channel_emoji, channel_emoji_image, channel_color',
[('Channel', 'Description', 'sunglasses', None, '#4360df')])
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/475")
def test_edit_community_channel(main_screen, channel_name, channel_description, channel_emoji, channel_emoji_image,
channel_color):
with step('Create simple community'):

View File

@ -17,6 +17,7 @@ from gui.main_window import MainWindow
@pytest.mark.parametrize('user_data_one, user_data_two', [
(configs.testpath.TEST_USER_DATA / 'user_account_one', configs.testpath.TEST_USER_DATA / 'user_account_two')
])
@pytest.mark.xfail(reason='https://github.com/status-im/status-desktop/issues/13375')
def test_join_community_via_owner_invite(multiple_instance, user_data_one, user_data_two):
user_one: UserAccount = constants.user_account_one
user_two: UserAccount = constants.user_account_two

View File

@ -20,6 +20,7 @@ pytestmark = marks
(configs.testpath.TEST_USER_DATA / 'user_account_one', configs.testpath.TEST_USER_DATA / 'user_account_two',
configs.testpath.TEST_USER_DATA / 'user_account_two')
])
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/475")
def test_group_chat(multiple_instance, user_data_one, user_data_two, user_data_three):
user_one: UserAccount = constants.user_account_one
user_two: UserAccount = constants.user_account_two