summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-30 09:02:08 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-12-30 09:02:08 +0100
commit7a997882e0fdfdca9dbfc51f379c010902b8ffa6 (patch)
treed18a26684f0a1215587f72712d0b2c641d3fcc6d
parent4ec86b13c9bf2112ced4111a420c2c800729112f (diff)
downloadnixpkgs-7a997882e0fdfdca9dbfc51f379c010902b8ffa6.tar
nixpkgs-7a997882e0fdfdca9dbfc51f379c010902b8ffa6.tar.gz
nixpkgs-7a997882e0fdfdca9dbfc51f379c010902b8ffa6.tar.bz2
nixpkgs-7a997882e0fdfdca9dbfc51f379c010902b8ffa6.tar.lz
nixpkgs-7a997882e0fdfdca9dbfc51f379c010902b8ffa6.tar.xz
nixpkgs-7a997882e0fdfdca9dbfc51f379c010902b8ffa6.tar.zst
nixpkgs-7a997882e0fdfdca9dbfc51f379c010902b8ffa6.zip
python310Packages.pyarrow: disable failing test
-rw-r--r--pkgs/development/python-modules/pyarrow/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyarrow/default.nix b/pkgs/development/python-modules/pyarrow/default.nix
index bdd907176f9..fc5b479df24 100644
--- a/pkgs/development/python-modules/pyarrow/default.nix
+++ b/pkgs/development/python-modules/pyarrow/default.nix
@@ -100,6 +100,8 @@ buildPythonPackage rec {
     # Flaky test
     "--deselect=pyarrow/tests/test_flight.py::test_roundtrip_errors"
     "--deselect=pyarrow/tests/test_pandas.py::test_threaded_pandas_import"
+    # Flaky test, works locally but not on Hydra
+    "--deselect=pyarrow/tests/test_csv.py::TestThreadedCSVTableRead::test_cancellation"
   ] ++ lib.optionals stdenv.isDarwin [
     # Requires loopback networking
     "--deselect=pyarrow/tests/test_ipc.py::test_socket_"