about summary refs log tree commit diff
path: root/pkgs/development/python-modules/httpx-socks
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-02-18 13:34:33 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-02-18 13:34:33 +0100
commitfcf750573305a6d335fb605e56e6021a9ea61337 (patch)
tree295ff6254f421988aa2f351bcd816c86b067dab0 /pkgs/development/python-modules/httpx-socks
parent3dff038ace1065cfe3ada3ca96588a711fa02c96 (diff)
python3Packages.httpx-socks: disable failing tests
Diffstat (limited to 'pkgs/development/python-modules/httpx-socks')
-rw-r--r--pkgs/development/python-modules/httpx-socks/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/httpx-socks/default.nix b/pkgs/development/python-modules/httpx-socks/default.nix
index 3600e173f9449..e45e6a85487a5 100644
--- a/pkgs/development/python-modules/httpx-socks/default.nix
+++ b/pkgs/development/python-modules/httpx-socks/default.nix
@@ -56,6 +56,12 @@ buildPythonPackage rec {
     "httpx_socks"
   ];
 
+  disabledTests = [
+    # Tests don't work in the sandbox
+    "test_proxy"
+    "test_secure_proxy"
+  ];
+
   meta = with lib; {
     description = "Proxy (HTTP, SOCKS) transports for httpx";
     homepage = "https://github.com/romis2012/httpx-socks";