8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 525a79c commit 184a2daCopy full SHA for 184a2da
tests/functional-tests/tests/test_slack_client.py renamed to libraries/botbuilder-adapters-slack/tests/test_slack_client.py
@@ -10,9 +10,13 @@
10
import time
11
import aiounittest
12
import requests
13
+import pytest
14
+
15
+SKIP = os.getenv("SlackChannel") == ''
16
17
18
class SlackClient(aiounittest.AsyncTestCase):
19
+ @pytest.mark.skipif(not SKIP, reason="Needs the env.SlackChannel to run.")
20
async def test_send_and_receive_slack_message(self):
21
# Arrange
22
echo_guid = str(uuid.uuid4())
0 commit comments