File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77from integration_tests .env_variable_names import (
88 SLACK_SDK_TEST_GRID_ORG_ADMIN_USER_TOKEN ,
9- SLACK_SDK_TEST_GRID_IDP_USERGROUP_ID ,
109 SLACK_SDK_TEST_GRID_TEAM_ID_2 ,
1110 SLACK_SDK_TEST_GRID_TEAM_ID ,
12- SLACK_SDK_TEST_GRID_USER_ID ,
1311)
1412from integration_tests .helpers import async_test
1513from slack_sdk .web import WebClient , SlackResponse
2018class TestWebClient (unittest .TestCase ):
2119 """Runs integration tests with real Slack API"""
2220
23- # TODO: admin_conversations_disconnectShared - not_allowed_token_type
24- # TODO: admin_conversations_ekm_listOriginalConnectedChannelInfo - enable the feature
25-
2621 def setUp (self ):
2722 self .logger = logging .getLogger (__name__ )
2823 self .org_admin_token = os .environ [SLACK_SDK_TEST_GRID_ORG_ADMIN_USER_TOKEN ]
@@ -31,10 +26,7 @@ def setUp(self):
3126
3227 self .team_id = os .environ [SLACK_SDK_TEST_GRID_TEAM_ID ]
3328 self .team_id_2 = os .environ [SLACK_SDK_TEST_GRID_TEAM_ID_2 ]
34- self .idp_group_id = os .environ [SLACK_SDK_TEST_GRID_IDP_USERGROUP_ID ]
35- self .user_id = os .environ [SLACK_SDK_TEST_GRID_USER_ID ]
3629 self .channel_name = f"test-channel-{ int (round (time .time () * 1000 ))} "
37- self .channel_rename = f"test-channel-renamed-{ int (round (time .time () * 1000 ))} "
3830
3931 def tearDown (self ):
4032 pass
You can’t perform that action at this time.
0 commit comments