Skip to content

Commit 827a37b

Browse files
Revert flaky tests
1 parent f6420c3 commit 827a37b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/slack_sdk_async/socket_mode/test_interactions_websockets.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
from slack_sdk.socket_mode.async_client import AsyncBaseSocketModeClient
1515
from slack_sdk.socket_mode.websockets import SocketModeClient
1616
from slack_sdk.web.async_client import AsyncWebClient
17+
from tests.helpers import is_ci_unstable_test_skip_enabled
1718
from tests.slack_sdk.socket_mode.mock_socket_mode_server import (
1819
start_socket_mode_server,
1920
socket_mode_envelopes,
@@ -103,6 +104,9 @@ async def socket_mode_listener(
103104

104105
@async_test
105106
async def test_send_message_while_disconnection(self):
107+
if is_ci_unstable_test_skip_enabled():
108+
# this test tends to fail on the GitHub Actions platform
109+
return
106110
t = Thread(target=start_socket_mode_server(self, 3001))
107111
t.daemon = True
108112
t.start()

0 commit comments

Comments
 (0)