Skip to content

Suite strategies#

fail_fast and max_fail can not be specified at the same time

args: --reruns=2 output: 3 failed, 6 rerun

args: --reruns=2 --maxfail=1 output: 2 failed, 2 rerun

args: --reruns=2 --maxfail=2 output: 2 failed, 4 rerun

args: --reruns=2 --maxfail=3 output: 3 failed, 6 rerun Also this works with parallel workers too