After I installed the linux 1.6.1 single file installer, I wanted to make sure things were working and used: pytest -v --pyargs openfe openfecli to test the install. I ended up with many tests failing due to too many open files (OSError: [Errno 24] Too many open files).
We need to make sure that we don't leave files open. My guess is either our pytest fixtures are the problem or we have some util function that is leaving files handles open (like maybe our pooch stuff for example).