Merge pull request #125762 from NixOS/backport-125749-to-release-21.05

[Backport release-21.05] python3Packages.aiomultiprocess: disable failing tests
This commit is contained in:
Martin Weinelt
2021-06-05 12:03:58 +02:00
committed by GitHub

View File

@@ -24,6 +24,14 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "aiomultiprocess/tests/*.py" ];
disabledTests = [
# tests are flaky and make the whole test suite time out
"test_pool_worker_exceptions"
"test_pool_worker_max_tasks"
"test_pool_worker_stop"
];
pythonImportsCheck = [ "aiomultiprocess" ];
meta = with lib; {