about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-09 17:58:38 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-09 17:58:38 +0100
commitd9e209e1fea7acf45e146c1a96886e891497b8f0 (patch)
treea6c99756277ce000687446ea325c5f29605ab9fd
parent1e8a9f5f20902cea5340c521a08c7f2943c0c94c (diff)
downloadnixlib-d9e209e1fea7acf45e146c1a96886e891497b8f0.tar
nixlib-d9e209e1fea7acf45e146c1a96886e891497b8f0.tar.gz
nixlib-d9e209e1fea7acf45e146c1a96886e891497b8f0.tar.bz2
nixlib-d9e209e1fea7acf45e146c1a96886e891497b8f0.tar.lz
nixlib-d9e209e1fea7acf45e146c1a96886e891497b8f0.tar.xz
nixlib-d9e209e1fea7acf45e146c1a96886e891497b8f0.tar.zst
nixlib-d9e209e1fea7acf45e146c1a96886e891497b8f0.zip
python311Packages.python-bsblan: disable tests that fail with aiohttp 3.9.1
-rw-r--r--pkgs/development/python-modules/python-bsblan/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-bsblan/default.nix b/pkgs/development/python-modules/python-bsblan/default.nix
index 2ffc8ed0b7f2..bfa3f38e4597 100644
--- a/pkgs/development/python-modules/python-bsblan/default.nix
+++ b/pkgs/development/python-modules/python-bsblan/default.nix
@@ -55,6 +55,12 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
+  disabledTests = lib.optionals (lib.versionAtLeast aiohttp.version "3.9.0") [
+    # https://github.com/liudger/python-bsblan/issues/808
+    "test_http_error400"
+    "test_not_authorized_401_response"
+  ];
+
   pythonImportsCheck = [
     "bsblan"
   ];