summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2023-01-26 00:00:00 +0000
committerengn33r <engn33r@users.noreply.github.com>2023-01-26 00:00:00 +0000
commitf0d2d0e8bae6cee1f57c00e9ccb295c85643731d (patch)
tree69f1d703dc4551a27c03132ed2c76ab56714ceae
parent669fe1b04dc93396dba4f4edc5bc1d9d32827c07 (diff)
downloadwebsocket-client-f0d2d0e8bae6cee1f57c00e9ccb295c85643731d.tar.gz
remove problematic CI test URL
-rw-r--r--websocket/tests/test_app.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/websocket/tests/test_app.py b/websocket/tests/test_app.py
index 5526d3e..063023f 100644
--- a/websocket/tests/test_app.py
+++ b/websocket/tests/test_app.py
@@ -186,13 +186,14 @@ class WebSocketAppTest(unittest.TestCase):
app = ws.WebSocketApp('wss://tsock.us1.twilio.com/v3/wsconnect')
app.run_forever(ping_interval=2, ping_timeout=1, ping_payload="Ping payload")
- @unittest.skipUnless(TEST_WITH_INTERNET, "Internet-requiring tests are disabled")
- def testOpcodeBinary(self):
- """ Test WebSocketApp binary opcode
- """
- # The lack of wss:// in the URL below is on purpose
- app = ws.WebSocketApp('wss://streaming.vn.teslamotors.com/streaming/')
- app.run_forever(ping_interval=2, ping_timeout=1, ping_payload="Ping payload")
+ # This is commented out because the URL no longer responds in the expected way
+ # @unittest.skipUnless(TEST_WITH_INTERNET, "Internet-requiring tests are disabled")
+ # def testOpcodeBinary(self):
+ # """ Test WebSocketApp binary opcode
+ # """
+ # # The lack of wss:// in the URL below is on purpose
+ # app = ws.WebSocketApp('wss://streaming.vn.teslamotors.com/streaming/')
+ # app.run_forever(ping_interval=2, ping_timeout=1, ping_payload="Ping payload")
@unittest.skipUnless(TEST_WITH_INTERNET, "Internet-requiring tests are disabled")
def testBadPingInterval(self):