From fe88dce9649143cc91d056fff5e8528b5e8639d6 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 29 Jan 2021 14:08:58 -0500 Subject: [PATCH] Raise the open file descriptor limit --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index cbcc363..635eeb2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -122,6 +122,9 @@ jobs: - run: name: "Test" command: | + # The test suite might leak file descriptors. macOS defaults to a + # limit of 256. This should be fixed, but not now ... + ulimit -Sn 1024 # And finally we can run the tests. venv/bin/python -m twisted.trial --rterrors _zkapauthorizer -- GitLab