summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-12-23 12:37:10 -0800
committerFrederik Rietdijk <fridh@fridh.nl>2019-12-30 16:46:52 +0100
commit0e29b98c1df908326d5b2a0e3b34c2944d1d1f02 (patch)
treeb2f9fefc8fa0231a84da5f86fd531536e20d18f6 /pkgs/development
parent264211ecbf139e7ed89e2ee8b016d1ceb2a9dfeb (diff)
downloadnixpkgs-0e29b98c1df908326d5b2a0e3b34c2944d1d1f02.tar
nixpkgs-0e29b98c1df908326d5b2a0e3b34c2944d1d1f02.tar.gz
nixpkgs-0e29b98c1df908326d5b2a0e3b34c2944d1d1f02.tar.bz2
nixpkgs-0e29b98c1df908326d5b2a0e3b34c2944d1d1f02.tar.lz
nixpkgs-0e29b98c1df908326d5b2a0e3b34c2944d1d1f02.tar.xz
nixpkgs-0e29b98c1df908326d5b2a0e3b34c2944d1d1f02.tar.zst
nixpkgs-0e29b98c1df908326d5b2a0e3b34c2944d1d1f02.zip
python3Packages.uproot: fix tests
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/uproot/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/uproot/default.nix b/pkgs/development/python-modules/uproot/default.nix
index e822e56aae6..812ff15242c 100644
--- a/pkgs/development/python-modules/uproot/default.nix
+++ b/pkgs/development/python-modules/uproot/default.nix
@@ -43,8 +43,11 @@ buildPythonPackage rec {
   ];
 
   # skip tests which do network calls
+  # test_compression.py is missing zstandard package
   checkPhase = ''
-    pytest tests -k 'not hist_in_tree and not branch_auto_interpretation'
+    pytest tests -k 'not hist_in_tree \
+      and not branch_auto_interpretation' \
+      --ignore=tests/test_compression.py
   '';
 
   meta = with lib; {