Skip to content

Commit

Permalink
Temporarily reduce maximum number of open file descriptors to 4096 wh…
Browse files Browse the repository at this point in the history
…ile running tests in CI pipeline
  • Loading branch information
lxp committed Jul 30, 2021
1 parent c195840 commit f2ccbec
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci-python3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,16 @@ jobs:
run: python -bb test/test.py --unit --exit-early

- name: Run integration tests (internal)
run: python -bb test/test.py -i --exit-early
run: |
ulimit -n
ulimit -n 4096
python -bb test/test.py -i --exit-early
- name: Run integration tests (external process)
run: test/test.py -e --exit-early
run: |
ulimit -n
ulimit -n 4096
test/test.py -e --exit-early
- name: Check package quality
run: pyroma -n 9 .
Expand Down

0 comments on commit f2ccbec

Please sign in to comment.