python3Packages.pytest-mockservers: disable failing test

The event_loop fixutre was deprecated in pytest-asyncio 0.22 and removed
in 1.0. Since pytest-mockservers propagates pytest-asyncio we must not
propagate anything but the default pytest-asyncio package.
This commit is contained in:
Martin Weinelt
2025-08-09 18:02:49 +02:00
parent 303014c8ce
commit 827bea5053

View File

@@ -46,6 +46,9 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
# relies on the removed event_loop fixture
disabledTests = [ "test_udp_server_factory" ];
pythonImportsCheck = [ "pytest_mockservers" ];
meta = with lib; {