Revert "check large nofile limit issue (#3334)" (back to original open files limit)

This reverts commit 24b1dea197.
0.10
sebres 2022-08-17 16:04:10 +02:00
parent 38026e5963
commit 476136281c
1 changed files with 3 additions and 3 deletions

View File

@ -81,12 +81,12 @@ jobs:
- name: Test suite
run: |
if [[ "$F2B_PY" = 2 ]]; then
sudo sh -c 'ulimit -n 1048576 && python setup.py test'
python setup.py test
elif dpkg --compare-versions "$F2B_PYV" lt 3.10; then
sudo sh -c 'ulimit -n 1048576 && python bin/fail2ban-testcases --verbosity=2'
python bin/fail2ban-testcases --verbosity=2
else
echo "Skip systemd backend since systemd-python module must be fixed for python >= v.3.10 in GHA ..."
sudo sh -c 'ulimit -n 1048576 && python bin/fail2ban-testcases --verbosity=2 -i "[sS]ystemd|[jJ]ournal"'
python bin/fail2ban-testcases --verbosity=2 -i "[sS]ystemd|[jJ]ournal"
fi
#- name: Test suite (debug some systemd tests only)