about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiohttp-wsgi
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-11-22 21:51:41 -0800
committerJonathan Ringer <jonringer117@gmail.com>2021-11-22 21:51:41 -0800
commit88e9beea985a8a0c661a213ad1f3558da32b78af (patch)
tree94e439bac9b17cbc90bf744559afea25037a1908 /pkgs/development/python-modules/aiohttp-wsgi
parenta7dda03a2e00b7839612749a0ecb0870e40a8003 (diff)
python3Packages.aiohttp-wsgi: disable network test
Diffstat (limited to 'pkgs/development/python-modules/aiohttp-wsgi')
-rw-r--r--pkgs/development/python-modules/aiohttp-wsgi/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aiohttp-wsgi/default.nix b/pkgs/development/python-modules/aiohttp-wsgi/default.nix
index 18364bdce6919..ed270cddd9814 100644
--- a/pkgs/development/python-modules/aiohttp-wsgi/default.nix
+++ b/pkgs/development/python-modules/aiohttp-wsgi/default.nix
@@ -26,6 +26,11 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
+  disabledTests = [
+    # makes http request to another server
+    "testEnviron"
+  ];
+
   pythonImportsCheck = [ "aiohttp_wsgi" ];
 
   meta = with lib; {