python314Packages.hypothesis: disable failing tests

Changed files
+23
pkgs
development
python-modules
hypothesis
+23
pkgs/development/python-modules/hypothesis/default.nix
···
# AssertionError: assert [b'def \... f(): pass'] == [b'def\\', b' f(): pass']
# https://github.com/HypothesisWorks/hypothesis/issues/4355
"test_clean_source"
+
]
+
++ lib.optionals (pythonAtLeast "3.14") [
+
"test_attrs_inference_builds"
+
"test_bound_missing_dot_access_forward_ref"
+
"test_bound_missing_forward_ref"
+
"test_bound_type_checking_only_forward_ref_wrong_type"
+
"test_bound_type_cheking_only_forward_ref"
+
"test_builds_suggests_from_type"
+
"test_bytestring_not_treated_as_generic_sequence"
+
"test_evil_prng_registration_nonsense"
+
"test_issue_4194_regression"
+
"test_passing_referenced_instance_within_function_scope_warns"
+
"test_registering_a_Random_is_idempotent"
+
"test_register_random_within_nested_function_scope"
+
"test_resolve_fwd_refs"
+
"test_resolves_forwardrefs_to_builtin_types"
+
"test_resolving_standard_collection_as_generic"
+
"test_resolving_standard_container_as_generic"
+
"test_resolving_standard_contextmanager_as_generic"
+
"test_resolving_standard_iterable_as_generic"
+
"test_resolving_standard_reversible_as_generic"
+
"test_resolving_standard_sequence_as_generic"
+
"test_specialised_collection_types"
];
pythonImportsCheck = [ "hypothesis" ];