summary refs log tree commit diff
diff options
context:
space:
mode:
authorLily Foster <lily@lily.flowers>2023-01-18 07:18:40 -0500
committerLily Foster <lily@lily.flowers>2023-01-22 07:59:49 -0500
commitb73025e14c7e8738ec3baa9db71efa0044ec7b35 (patch)
treecf4c1d963ca1e11ea21373600a91004c7c2ee2cd
parent141cbae9d81cf9e7090868e9750b6ea934fe2e7e (diff)
downloadnixpkgs-b73025e14c7e8738ec3baa9db71efa0044ec7b35.tar
nixpkgs-b73025e14c7e8738ec3baa9db71efa0044ec7b35.tar.gz
nixpkgs-b73025e14c7e8738ec3baa9db71efa0044ec7b35.tar.bz2
nixpkgs-b73025e14c7e8738ec3baa9db71efa0044ec7b35.tar.lz
nixpkgs-b73025e14c7e8738ec3baa9db71efa0044ec7b35.tar.xz
nixpkgs-b73025e14c7e8738ec3baa9db71efa0044ec7b35.tar.zst
nixpkgs-b73025e14c7e8738ec3baa9db71efa0044ec7b35.zip
python311Packages.pyarrow: disable failing fs repr tests on py311
-rw-r--r--pkgs/development/python-modules/pyarrow/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyarrow/default.nix b/pkgs/development/python-modules/pyarrow/default.nix
index a862fa69a9a..08f55e4db38 100644
--- a/pkgs/development/python-modules/pyarrow/default.nix
+++ b/pkgs/development/python-modules/pyarrow/default.nix
@@ -2,6 +2,7 @@
 , stdenv
 , buildPythonPackage
 , python
+, pythonAtLeast
 , pythonOlder
 , arrow-cpp
 , cffi
@@ -109,6 +110,9 @@ buildPythonPackage rec {
     "--deselect=pyarrow/tests/test_flight.py::test_large_descriptor"
     "--deselect=pyarrow/tests/test_flight.py::test_large_metadata_client"
     "--deselect=pyarrow/tests/test_flight.py::test_none_action_side_effect"
+  ] ++ lib.optionals (pythonAtLeast "3.11") [
+    # Repr output is printing number instead of enum name so these tests fail
+    "--deselect=pyarrow/tests/test_fs.py::test_get_file_info"
   ];
 
   dontUseSetuptoolsCheck = true;