python3Packages.aiomultiprocess: disable failing tests

These tests fail from time to time and bring the whole test suite to a
timeout.

https://github.com/omnilib/aiomultiprocess/issues/97
(cherry picked from commit c8261a34f80d67223589a498bc0acd4713ab21b3)
This commit is contained in:
Martin Weinelt 2021-06-04 05:26:53 +02:00 committed by github-actions[bot]
parent 0edbcd01f6
commit e7c8f2ff73
1 changed files with 8 additions and 0 deletions

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; {