Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 342 Bytes

File metadata and controls

27 lines (18 loc) · 342 Bytes

Python External Dependencies Demo

A minimal Flask API that demonstrates the challenge of testing code with external dependencies.

Install

pip install -r requirements.txt

Run Server

python app.py

View App

curl http://localhost:5000/posts/1

Run Tests

pytest test_app.py -v