From: =?utf-8?b?T25kxZllaiBOb3bDvQ==?= <novy@ondrej.org>
Date: Thu, 17 Nov 2022 17:56:02 +0100
Subject: Skip test with network access

Forwarded: not-needed
---
 tests/test_proxy.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/test_proxy.py b/tests/test_proxy.py
index 844f9a0..f37d822 100644
--- a/tests/test_proxy.py
+++ b/tests/test_proxy.py
@@ -1,6 +1,9 @@
 from paste import proxy
 from paste.fixture import TestApp
 
+import pytest
+
+@pytest.mark.skip(reason="Prevent internet access")
 def test_proxy_to_website():
     # Not the most robust test...
     # need to test things like POSTing to pages, and getting from pages
