summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-12-31 14:05:14 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-01-05 13:20:45 +0100
commit1b4b5be9cabf223ccc81d798ffacee2075f2c133 (patch)
tree4fffac0f2d3e5dcb60e482daf228d58e1436695c
parent4553e6237ff3eb7ddb44897d4782d9d1314c4551 (diff)
downloadnixpkgs-1b4b5be9cabf223ccc81d798ffacee2075f2c133.tar
nixpkgs-1b4b5be9cabf223ccc81d798ffacee2075f2c133.tar.gz
nixpkgs-1b4b5be9cabf223ccc81d798ffacee2075f2c133.tar.bz2
nixpkgs-1b4b5be9cabf223ccc81d798ffacee2075f2c133.tar.lz
nixpkgs-1b4b5be9cabf223ccc81d798ffacee2075f2c133.tar.xz
nixpkgs-1b4b5be9cabf223ccc81d798ffacee2075f2c133.tar.zst
nixpkgs-1b4b5be9cabf223ccc81d798ffacee2075f2c133.zip
python3Packages.anyio: disable failing tests
-rw-r--r--pkgs/development/python-modules/anyio/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/anyio/default.nix b/pkgs/development/python-modules/anyio/default.nix
index 9d2e2a33359..3ad4d8495f0 100644
--- a/pkgs/development/python-modules/anyio/default.nix
+++ b/pkgs/development/python-modules/anyio/default.nix
@@ -71,9 +71,17 @@ buildPythonPackage rec {
     mock
   ];
 
+  pytestFlagsArray = [
+    "-W" "ignore::trio.TrioDeprecationWarning"
+  ];
+
   disabledTests = [
     # block devices access
     "test_is_block_device"
+    # INTERNALERROR> AttributeError: 'NonBaseMultiError' object has no attribute '_exceptions'. Did you mean: 'exceptions'?
+    "test_exception_group_children"
+    "test_exception_group_host"
+    "test_exception_group_filtering"
   ];
 
   disabledTestPaths = [