python39Packages.hypothesis: disable failing tests

This commit is contained in:
natsukium 2024-03-23 11:30:37 +09:00
parent 97c86a7a0c
commit 4672e2915e
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
1 changed files with 8 additions and 0 deletions

View File

@ -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"
];