summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Dent <cdent@anticdent.org>2023-04-30 12:10:46 +0100
committerChris Dent <cdent@anticdent.org>2023-04-30 12:10:46 +0100
commite7c573d1723be6425bdcbf65caf2daba8d6a2865 (patch)
tree23afe31949555996d79141e15a246de8b76a7ddc
parent81de36a1b598273018955baa855debf4a623befc (diff)
downloadpaste-git-e7c573d1723be6425bdcbf65caf2daba8d6a2865.tar.gz
Skip the proxy test
It relies on the external httpbin.org which these days is rather slow and unreliable.
-rw-r--r--tests/test_proxy.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_proxy.py b/tests/test_proxy.py
index 844f9a0..5f80fef 100644
--- a/tests/test_proxy.py
+++ b/tests/test_proxy.py
@@ -1,6 +1,11 @@
+import pytest
+
from paste import proxy
from paste.fixture import TestApp
+# TODO: Skipping this for now as it is unreliable. Ideally we'd run something
+# locally and not have to rely on external stuff.
+@pytest.mark.skip(reason="httpbin.org is too slow these days")
def test_proxy_to_website():
# Not the most robust test...
# need to test things like POSTing to pages, and getting from pages