diff --git a/.github/actions/regression-tests/action.yml b/.github/actions/regression-tests/action.yml index d3f0ed628836..a751f8ed893d 100644 --- a/.github/actions/regression-tests/action.yml +++ b/.github/actions/regression-tests/action.yml @@ -50,7 +50,7 @@ runs: export UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 # to crash on errors # Run only replication tests with epoll - if [[ ${{inputs.epoll}} == 'true' ]]; + if [[ ${{inputs.epoll}} == 'true' ]]; then timeout 50m pytest -m "${{inputs.filter}}" --durations=10 --timeout=300 --color=yes --json-report --json-report-file=report.json dragonfly/replication_test.py --df force_epoll=true --log-cli-level=INFO || code=$? # Run everything with uring else