1 We have no pypytools packaged yet.
3 --- cheroot-10.0.1/requirements/tests.in.orig
4 +++ cheroot-10.0.1/requirements/tests.in
6 pyopenssl >= 22.0.0; implementation_name == "pypy" and python_version >= "3.8"
7 pyopenssl < 22.0.0; implementation_name == "pypy" and python_version < "3.8"
9 -# The pypytools library provides a cross-implementation context
10 -# manager for disabling garbage collection in specific blocks
11 -# of the control flow:
16 pytest-forked>=1.2.0; sys_platform != "win32"
17 --- cheroot-10.0.1/cheroot/test/test_server.py.orig
18 +++ cheroot-10.0.1/cheroot/test/test_server.py
23 -from pypytools.gc.custom import DefaultGc
25 from .._compat import bton, ntob
26 from .._compat import IS_LINUX, IS_MACOS, IS_WINDOWS, SYS_PLATFORM
27 from ..server import IS_UID_GID_RESOLVABLE, Gateway, HTTPServer
29 indirect=('resource_limit',),
31 @pytest.mark.usefixtures('many_open_sockets')
32 +@pytest.mark.skip(reason="missing pypytools")
33 def test_high_number_of_file_descriptors(native_server_client, resource_limit):
34 """Test the server does not crash with a high file-descriptor value.