community/black: increase max open file descriptors to 4096

Tests that start blackd server fail on arm builders with:
OSError: [Errno 24] No file descriptors available

The same issue appeared in a489f95448
This commit is contained in:
Michał Polański 2024-05-04 17:08:38 +02:00
parent 49da68a571
commit 9893411e6d

View File

@ -41,7 +41,7 @@ build() {
}
check() {
ulimit -n 2048 # prevent running out of file descriptors
ulimit -n 4096 # prevent running out of file descriptors
./venv/bin/python3 -m pytest
}