Framework Mode - Stress testing concepts
Folder Structure for Stress Testing Project
stress-testing-project/ ├── tests/ │ ├── stress/ │ │ ├── cpu_stress_test.py │ │ ├── memory_stress_test.py │ │ ├── io_stress_test.py │ │ └── network_stress_test.py │ └── __init__.py ├── utils/ │ ├── resource_monitor.py │ ├── load_generator.py │ └── __init__.py ├── config/ │ ├── environments.yaml │ ├── stress_test_config.yaml │ └── __init__.py ├── reports/ │ └── stress_test_report.html ├── conftest.py └── README.md