Framework Mode - Test prioritization
Folder Structure for Test Prioritization Framework
test-prioritization-project/ ├── tests/ │ ├── critical/ │ │ ├── test_login.py │ │ └── test_payment.py │ ├── high/ │ │ ├── test_user_profile.py │ │ └── test_search.py │ ├── medium/ │ │ ├── test_notifications.py │ │ └── test_settings.py │ └── low/ │ ├── test_help.py │ └── test_about_page.py ├── utils/ │ ├── prioritization.py │ └── helpers.py ├── config/ │ ├── environments.yaml │ └── test_priorities.yaml ├── reports/ ├── conftest.py └── pytest.ini