Framework Mode - Why plugins extend PyTest capabilities
Folder Structure of a PyTest Framework with Plugins
project-root/
├── tests/
│ ├── test_login.py
│ ├── test_checkout.py
│ └── __init__.py
├── conftest.py
├── pytest.ini
├── requirements.txt
├── plugins/
│ ├── custom_marker.py
│ └── __init__.py
└── utils/
├── helpers.py
└── __init__.py