Framework Mode - @pytest.mark.skip with reason
Folder Structure
project-root/
├── tests/
│ ├── test_example.py
│ ├── test_login.py
│ └── __init__.py
├── src/
│ └── app_code.py
├── conftest.py
├── pytest.ini
└── requirements.txt
This is a typical Pytest project structure. Tests live in the tests/ folder. Configuration files like pytest.ini and fixtures in conftest.py help manage test behavior.