Framework Mode - Testing with external services
Folder Structure
tests/ ├── test_api.py # Tests interacting with external APIs ├── test_db.py # Tests involving external databases ├── test_auth.py # Tests for authentication services conftest.py # Fixtures for setup and teardown utils/ ├── api_client.py # Wrapper for external API calls ├── db_helper.py # Helpers for database connections configs/ ├── config.yaml # Environment and credentials configuration reports/ ├── latest_report.html # Test execution reports