A pytest-based setup for:
- Smoke test (health endpoint)
- Integration tests for user/order APIs
- Contract tests via JSON Schema
- Performance tests via pytest-benchmark
git clone https://github.com/mariasu11/qa_python.gitcd api_test_frameworkpython3 -m venv venv && source venv/bin/activatepip install -r requirements.txt
export BASE_URL=https://api.example.com
pytest
pytest -m smoke
pytest -m performance