Skip to content

Commit

Permalink
Merge pull request #23 from cfv-project/fix-max-open-files-clipping
Browse files Browse the repository at this point in the history
Temporarily reduce maximum number of open file descriptors to 4096 while running tests in CI pipeline
  • Loading branch information
lxp authored Jul 30, 2021
2 parents c195840 + f2ccbec commit 0dba5cd
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 0dba5cd

Please sign in to comment.