33 lines
1.0 KiB
Diff
33 lines
1.0 KiB
Diff
From fc55d90042f7389d81bd4592a20f1e93cf20e795 Mon Sep 17 00:00:00 2001
|
|
From: Major Hayden <major@redhat.com>
|
|
Date: Wed, 31 Jan 2024 16:24:32 -0600
|
|
Subject: [PATCH] Skip websocket test
|
|
|
|
---
|
|
test/test_websocket.py | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/test/test_websocket.py b/test/test_websocket.py
|
|
index 17de0a9..860d434 100644
|
|
--- a/test/test_websocket.py
|
|
+++ b/test/test_websocket.py
|
|
@@ -17,6 +17,7 @@ from test import NativeResourceTest
|
|
import threading
|
|
from time import sleep, time
|
|
from typing import Optional
|
|
+import unittest
|
|
|
|
# using a 3rdparty websocket library for the server
|
|
import websockets.server as websockets_server_3rdparty
|
|
@@ -491,6 +492,7 @@ class TestClient(NativeResourceTest):
|
|
|
|
self.assertIsNone(handler.exception)
|
|
|
|
+ @unittest.skip("Requires network")
|
|
def test_exception_from_incoming_frame_callback_closes_websocket(self):
|
|
# loop 3 times, once for each type of on_incoming_frame_X callback
|
|
for i in ('begin', 'payload', 'complete'):
|
|
--
|
|
2.43.0
|
|
|