about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2024-05-17 18:21:54 +0200
committerGitHub <noreply@github.com>2024-05-17 18:21:54 +0200
commit31b67eb2d97c0671079458725700300c47d55c9e (patch)
tree6d1ec2a0a7d54070de21d06c5195d9cb53333633
parent6546f2c5dbc7d3c5b8b357c1ba3acee6018ef2fc (diff)
parent1215a1ca8855b52dfd8563b48d1efbad48421b95 (diff)
Merge pull request #312445 from RaghavSood/python3Packages.cramjam/disable-test_variants
python311Packages.cramjam,python312Packages.cramjam: disable test_variants.py
-rw-r--r--pkgs/development/python-modules/cramjam/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cramjam/default.nix b/pkgs/development/python-modules/cramjam/default.nix
index da4fec24f36ba..e61e75da117f5 100644
--- a/pkgs/development/python-modules/cramjam/default.nix
+++ b/pkgs/development/python-modules/cramjam/default.nix
@@ -46,7 +46,13 @@ buildPythonPackage rec {
 
   pytestFlagsArray = [ "cramjam-python/tests" ];
 
-  disabledTestPaths = [ "cramjam-python/benchmarks/test_bench.py" ];
+  disabledTestPaths = [
+    "cramjam-python/benchmarks/test_bench.py"
+    # test_variants.py appears to be flaky
+    #
+    # https://github.com/NixOS/nixpkgs/pull/311584#issuecomment-2117656380
+    "cramjam-python/tests/test_variants.py"
+  ];
 
   pythonImportsCheck = [ "cramjam" ];