about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2024-04-19 21:49:56 +0200
committerGitHub <noreply@github.com>2024-04-19 21:49:56 +0200
commitd31751f63b898f225ee5ac325c1586149d168f53 (patch)
tree9b1188712df4901e53441146e19a20bd813bde74 /pkgs
parent7eceafd98fcc18e57305ae82f2e6cba51b06ceac (diff)
parent67823c5d8e61f9eec6382c7f547c6583535f5317 (diff)
Merge pull request #305375 from mweinelt/jaraco-test-disable
python311Packages.jaraco-test: disable failing tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/jaraco-test/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jaraco-test/default.nix b/pkgs/development/python-modules/jaraco-test/default.nix
index 97bb762449889..fb6c3a883e93d 100644
--- a/pkgs/development/python-modules/jaraco-test/default.nix
+++ b/pkgs/development/python-modules/jaraco-test/default.nix
@@ -40,6 +40,11 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
+  disabledTestPaths = [
+    # https://github.com/jaraco/jaraco.test/issues/6
+    "jaraco/test/cpython.py"
+  ];
+
   pythonImportsCheck = [
     "jaraco.test"
   ];