Merge pull request #125749 from mweinelt/python/aiomultiprocessing

python3Packages.aiomultiprocess: disable failing tests
This commit is contained in:
Fabian Affolter 2021-06-05 10:08:24 +02:00 committed by GitHub
commit c59c4ed03f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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