about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2021-01-01 09:56:00 +0200
committerGitHub <noreply@github.com>2021-01-01 09:56:00 +0200
commit04ea3b4eb98b559f50b64ccfd8892b8326575a61 (patch)
tree447307b0d0f762002f2afbbc342336343b2a92a9
parentf0faa10d8a29c16dfbbecd76f2d974915cd9728c (diff)
parent9da0c51027b3d09a607044fe0fd3dce2a9044e2e (diff)
downloadnixlib-04ea3b4eb98b559f50b64ccfd8892b8326575a61.tar
nixlib-04ea3b4eb98b559f50b64ccfd8892b8326575a61.tar.gz
nixlib-04ea3b4eb98b559f50b64ccfd8892b8326575a61.tar.bz2
nixlib-04ea3b4eb98b559f50b64ccfd8892b8326575a61.tar.lz
nixlib-04ea3b4eb98b559f50b64ccfd8892b8326575a61.tar.xz
nixlib-04ea3b4eb98b559f50b64ccfd8892b8326575a61.tar.zst
nixlib-04ea3b4eb98b559f50b64ccfd8892b8326575a61.zip
Merge pull request #106682 from snicket2100/parsimonius-exclude-performance-tests
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";