1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: "Michael R. Crusoe" <crusoe@debian.org>
Date: Sun, 30 Mar 2025 20:08:05 +0200
Subject: skip a test that requires network access
Forwarded: not-needed
---
testing/test/integration/test_exception.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/testing/test/integration/test_exception.py b/testing/test/integration/test_exception.py
index 9ade900..694eb43 100644
--- a/testing/test/integration/test_exception.py
+++ b/testing/test/integration/test_exception.py
@@ -45,6 +45,7 @@ class TestException(unittest.TestCase):
traceback.clear_frames(tb)
pass
+ @unittest.skip("requires network access")
def test_conn_timeout_exception(self):
start = datetime.today()
try:
|