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
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, flit-core
|
, flit-core
|
||||||
|
@ -34,6 +35,11 @@ buildPythonPackage rec {
|
||||||
pyyaml
|
pyyaml
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# On darwin: Too many open files
|
||||||
|
preCheck = lib.optionalString stdenv.isDarwin ''
|
||||||
|
ulimit -n 1024
|
||||||
|
'';
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
# these tests raise circus.tests.support.TimeoutException
|
# these tests raise circus.tests.support.TimeoutException
|
||||||
"test_reload1"
|
"test_reload1"
|
||||||
|
|
Loading…
Reference in a new issue