Merge pull request #125749 from mweinelt/python/aiomultiprocessing
python3Packages.aiomultiprocess: disable failing tests
This commit is contained in:
commit
c59c4ed03f
1 changed files with 8 additions and 0 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue