about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsnicket2100 <57048005+snicket2100@users.noreply.github.com>2020-12-11 21:19:35 +0100
committersnicket2100 <57048005+snicket2100@users.noreply.github.com>2020-12-31 18:37:38 +0100
commit9da0c51027b3d09a607044fe0fd3dce2a9044e2e (patch)
tree941b8b8b0515f669368bb9a35eb59c801bc55a41
parent4e75a31e98d2219c1deb450fc90ecd98ced83b58 (diff)
downloadnixlib-9da0c51027b3d09a607044fe0fd3dce2a9044e2e.tar
nixlib-9da0c51027b3d09a607044fe0fd3dce2a9044e2e.tar.gz
nixlib-9da0c51027b3d09a607044fe0fd3dce2a9044e2e.tar.bz2
nixlib-9da0c51027b3d09a607044fe0fd3dce2a9044e2e.tar.lz
nixlib-9da0c51027b3d09a607044fe0fd3dce2a9044e2e.tar.xz
nixlib-9da0c51027b3d09a607044fe0fd3dce2a9044e2e.tar.zst
nixlib-9da0c51027b3d09a607044fe0fd3dce2a9044e2e.zip
parsimonious: excluding unpredictable tests
-rw-r--r--pkgs/development/python-modules/parsimonious/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/parsimonious/default.nix b/pkgs/development/python-modules/parsimonious/default.nix
index 69e6d1d2bb2c..25d87a7f2f1f 100644
--- a/pkgs/development/python-modules/parsimonious/default.nix
+++ b/pkgs/development/python-modules/parsimonious/default.nix
@@ -17,6 +17,9 @@ buildPythonPackage rec {
   checkInputs = [ nose ];
   propagatedBuildInputs = [ six ];
 
+  # performance tests tend to fail sometimes
+  NOSE_EXCLUDE = "test_benchmarks";
+
   meta = with stdenv.lib; {
     homepage = "https://github.com/erikrose/parsimonious";
     description = "Fast arbitrary-lookahead parser written in pure Python";