File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
tests/slack_sdk_async/socket_mode Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1414from slack_sdk .socket_mode .async_client import AsyncBaseSocketModeClient
1515from slack_sdk .socket_mode .websockets import SocketModeClient
1616from slack_sdk .web .async_client import AsyncWebClient
17+ from tests .helpers import is_ci_unstable_test_skip_enabled
1718from 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 ()
You can’t perform that action at this time.
0 commit comments