API tests for Contact List web app on Python
Tested website: Thinking Tester Contact List
API documentation: Postman Documentation
To run tests:
- Create new virtual environment:
python -m venv .venv - Activate it with commands
.venv\Scripts\activateon Windows orsource .venv/bin/activateon Linux/Mac - Install tests dependencies:
pip install -r requirements.txt - Run
pytestcommand
Use deactivate command to exit virtual environment.