Merge pull request #241162 from SuperSandro2000/pypy3/sphinx

pypy3Packages.sphinx: disable broken tests
This commit is contained in:
Sandro 2023-07-09 23:28:28 +02:00 committed by GitHub
commit eaffb76bd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
, buildPythonPackage , buildPythonPackage
, pythonOlder , pythonOlder
, fetchFromGitHub , fetchFromGitHub
, fetchpatch , isPyPy
# nativeBuildInputs # nativeBuildInputs
, flit-core , flit-core
@ -144,6 +144,19 @@ buildPythonPackage rec {
"test_auth_header_no_match" "test_auth_header_no_match"
"test_follows_redirects_on_GET" "test_follows_redirects_on_GET"
"test_connect_to_selfsigned_fails" "test_connect_to_selfsigned_fails"
] ++ lib.optionals isPyPy [
# PyPy has not __builtins__ which get asserted
# https://doc.pypy.org/en/latest/cpython_differences.html#miscellaneous
"test_autosummary_generate_content_for_module"
"test_autosummary_generate_content_for_module_skipped"
# internals are asserted which are sightly different in PyPy
"test_autodoc_inherited_members_None"
"test_automethod_for_builtin"
"test_builtin_function"
"test_cython"
"test_isattributedescriptor"
"test_methoddescriptor"
"test_partialfunction"
]; ];
meta = with lib; { meta = with lib; {