summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/hypothesis/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/hypothesis/default.nix')
-rw-r--r--pkgs/development/python-modules/hypothesis/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/hypothesis/default.nix b/pkgs/development/python-modules/hypothesis/default.nix
index 998510ec8162..2c99b43f9487 100644
--- a/pkgs/development/python-modules/hypothesis/default.nix
+++ b/pkgs/development/python-modules/hypothesis/default.nix
@@ -79,6 +79,14 @@ buildPythonPackage rec {
"tests/cover"
];
+ disabledTests = if (pythonOlder "3.10") then [
+ # not sure why these tests fail with only 3.9
+ # FileNotFoundError: [Errno 2] No such file or directory: 'git'
+ "test_observability"
+ "test_assume_has_status_reason"
+ "test_observability_captures_stateful_reprs"
+ ] else null;
+
pythonImportsCheck = [
"hypothesis"
];