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
commit 36b2126e54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,14 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "aiomultiprocess/tests/*.py" ]; 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" ]; pythonImportsCheck = [ "aiomultiprocess" ];
meta = with lib; { meta = with lib; {