File: 0001-Skip-websocket-client-with-remote-server.patch

package info (click to toggle)
emacs-websocket 1.13-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 260 kB
  • sloc: lisp: 2,528; python: 26; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 863 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Nicholas D Steeves <nsteeves@gmail.com>
Date: Thu, 6 Aug 2020 20:49:12 -0400
Subject: Skip websocket-client-with-remote-server

Forwarded: https://github.com/ahyatt/emacs-websocket/pull/70
---
 websocket-functional-test.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/websocket-functional-test.el b/websocket-functional-test.el
index 8a599d0..d41ceea 100644
--- a/websocket-functional-test.el
+++ b/websocket-functional-test.el
@@ -76,6 +76,7 @@ written to be used widely."
       (websocket-functional-client-test "ws://127.0.0.1:9999"))))
 
 (ert-deftest websocket-client-with-remote-server ()
+  (ert-skip "Skipping, because this test requires internet access")
   ;; Emacs previous to Emacs 24 cannot handle wss.
   (if (>= (string-to-number (substring emacs-version 0 2)) 24)
       (websocket-functional-client-test "wss://echo.websocket.org")