On Thu, 19 Feb 2026 09:31:49 +0100 picca <[email protected]> wrote: > OSError: [Errno 24] Too many open files: '/tmp/pytest-of-unshare/pytest-0' > > My question, his how van I debug this sort os issue ?
Perhaps the maximum number of files concurrently open differs on your local machine vs. the one used as remote for the CI. By `ulimit -a` the thresholds are print to the CLI. By `ulimit --help | less` it looks like `ulimit -n` provides an adjustment of the limit in question. Regards, Norwid

