From b86327ef9320d385999b65a81ce7146f2aa3ce58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= <sandro.jaeckel@gmail.com> Date: Tue, 30 Mar 2021 10:10:39 +0200 Subject: [PATCH] pythonPackages.pandas: skip hanging/crashing test --- pkgs/development/python-modules/pandas/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix index 7fd551e192c..df44b499805 100644 --- a/pkgs/development/python-modules/pandas/default.nix +++ b/pkgs/development/python-modules/pandas/default.nix @@ -110,6 +110,13 @@ buildPythonPackage rec { "test_clipboard" ]; + disabledTestPaths = [ + # some test in this file either crashes python or hangs for hours + # TODO: figure out why and how to fix it + "tests/io/pytables/test_pytables_missing.py" + "tests/io/pytables/test_store.py" + ]; + # Tests have relative paths, and need to reference compiled C extensions # so change directory where `import .test` is able to be resolved preCheck = ''