pytest-dev / pytest-rerunfailures

a pytest plugin that re-runs failed tests up to -n times to eliminate flakey failures
Other
380 stars 83 forks source link

[RFC] `--pdb`: Friendlier default (use warning and infer `--reruns 0`) #248

Open tony opened 7 months ago

tony commented 7 months ago

Assume pyproject.toml:

[tool.pytest.ini_options]
addopts = "--reruns 2"

Current behavior

Right now, passing --pdb will raise:

ERROR: --reruns incompatible with --pdb

Better: Assume --reruns 0 if --pdb

It's highly unlikely a person attempting to drop into a shell wants reruns. Rather than error, show a warning:

WARNING: --reruns incompatible with --pdb, --reruns will behave as if set to 0