Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 573 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 573 Bytes

Terminal apps

This repository contains my solutions to the Florin Pop's App Ideas Collection written in Python, using the Test Driven Development approach and reproduced in the terminal.

How to run each app?

  1. Clone this repository
  2. Install the requirements: pip install -r requirements.txt
  3. Run the app you want: python apps/<app_name>/main.py

How to run the tests?

pytest --cov=apps

How to run the tests and generate a coverage report?

pytest --cov=apps --cov-report html