Framework Mode - Flaky test management
Folder Structure for Flaky Test Management
flaky-test-project/ ├── tests/ │ ├── stable/ │ │ └── test_login.py │ ├── flaky/ │ │ └── test_payment_retry.py │ └── __init__.py ├── utils/ │ ├── flaky_handler.py │ ├── retry_decorator.py │ └── __init__.py ├── config/ │ ├── environments.yaml │ └── settings.yaml ├── reports/ │ └── latest_report.html ├── conftest.py └── pytest.ini