Merge pull request #268271 from tu-maurice/fix-darwin/python-circus
python311Packages.circus: fix tests on darwin
This commit is contained in:
commit
29255a37b3
1 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, flit-core
|
||||
|
@ -34,6 +35,11 @@ buildPythonPackage rec {
|
|||
pyyaml
|
||||
];
|
||||
|
||||
# On darwin: Too many open files
|
||||
preCheck = lib.optionalString stdenv.isDarwin ''
|
||||
ulimit -n 1024
|
||||
'';
|
||||
|
||||
disabledTests = [
|
||||
# these tests raise circus.tests.support.TimeoutException
|
||||
"test_reload1"
|
||||
|
|
Loading…
Reference in a new issue