Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 817 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 817 Bytes

Udacity's Software Testing course

A course about how to make software fail.

This repo contains some programming exercises from this course (not all of them, ~ the second half).

Course links

Python coverage tool

  • install it with pip install coverage
  • run it with command coverage run --branch your-file.py && coverage report && coverage html
    • --branch also measures branch coverage (by default there is only statement coverage)
    • report shows coverage report in console output
    • html generates html report (you have to locate and open it manualy with your browser)