about summary refs log tree commit diff
path: root/pkgs/development/python-modules/intake
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-17 11:49:12 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-17 11:49:12 +0100
commit8a78967cd8242d86165e8418f0395494da690297 (patch)
tree1fa9319679086e719604e78e8587a0bbe1092d37 /pkgs/development/python-modules/intake
parent00d6078d8e3db51e371758b863a2c04035a34c0c (diff)
pythonPackages.intake: disable broken test
Diffstat (limited to 'pkgs/development/python-modules/intake')
-rw-r--r--pkgs/development/python-modules/intake/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/intake/default.nix b/pkgs/development/python-modules/intake/default.nix
index 922d543fd1de8..f3f8c96a6f447 100644
--- a/pkgs/development/python-modules/intake/default.nix
+++ b/pkgs/development/python-modules/intake/default.nix
@@ -64,14 +64,17 @@ buildPythonPackage rec {
     PATH=$out/bin:$PATH
   '';
 
-  # disable tests which touch network
-  disabledTests = ''
+  disabledTests = [
+    # disable tests which touch network
     "test_discover"
     "test_filtered_compressed_cache"
     "test_get_dir"
     "test_remote_cat"
     "http"
-  '';
+
+    # broken test
+    "test_read_pattern_with"
+  ];
 
   meta = with lib; {
     description = "Data load and catalog system";