about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-10-24 12:29:11 +0200
committerGitHub <noreply@github.com>2022-10-24 12:29:11 +0200
commit3402e519abd3bd229aac6b89d24a3bdd6793e65c (patch)
tree7272024a49cc0e8efc7f36bb4dc04b5c9f341e23
parent3b2d431ac603aad74253ac59957c86cf1d94c823 (diff)
parenta621d58f5fc17d71b1df435da0102b076616047a (diff)
Merge pull request #197420 from fabaff/aiofile-fix
python310Packages.aiofile: disable failing test
-rw-r--r--pkgs/development/python-modules/aiofile/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aiofile/default.nix b/pkgs/development/python-modules/aiofile/default.nix
index ec09473e20720..74336a22e01fc 100644
--- a/pkgs/development/python-modules/aiofile/default.nix
+++ b/pkgs/development/python-modules/aiofile/default.nix
@@ -36,6 +36,23 @@ buildPythonPackage rec {
     "aiofile"
   ];
 
+  disabledTests = [
+    # Tests (SystemError) fails randomly during nix-review
+    "test_async_open_fp"
+    "test_async_open_iter_chunked"
+    "test_async_open_iter_chunked"
+    "test_async_open_line_iter"
+    "test_async_open_line_iter"
+    "test_async_open_readline"
+    "test_async_open_unicode"
+    "test_async_open"
+    "test_binary_io_wrapper"
+    "test_modes"
+    "test_text_io_wrapper"
+    "test_unicode_writer"
+    "test_write_read_nothing"
+  ];
+
   meta = with lib; {
     description = "File operations with asyncio support";
     homepage = "https://github.com/mosquito/aiofile";