python312Packages.chromadb: increase file descriptor limit

This commit is contained in:
annalee 2024-05-10 10:51:29 +00:00
parent 0838b0dadc
commit 27f29e4aef
No known key found for this signature in database

View File

@ -132,6 +132,7 @@ buildPythonPackage rec {
pytestFlagsArray = [ "-x" ];
preCheck = ''
(($(ulimit -n) < 1024)) && ulimit -n 1024
export HOME=$(mktemp -d)
'';