Framework Mode - Basic assert statement
Folder Structure
my_pytest_project/
├── tests/
│ ├── test_example.py
│ └── __init__.py
├── conftest.py
├── pytest.ini
└── README.md
This is a simple pytest project structure. The tests/ folder contains test files. conftest.py holds shared fixtures or hooks. pytest.ini configures pytest options.