Framework Mode - Single responsibility per test
Folder Structure
project-root/
├── tests/
│ ├── test_login.py
│ ├── test_registration.py
│ └── test_profile_update.py
├── src/
│ ├── app/
│ │ ├── __init__.py
│ │ └── user.py
│ └── utils/
│ └── helpers.py
├── conftest.py
├── pytest.ini
└── requirements.txt