Skip to content

Latest commit

 

History

History
37 lines (19 loc) · 1.07 KB

File metadata and controls

37 lines (19 loc) · 1.07 KB

Test-Driven Development with Python - test me

In this repository I will work through Harry J.W. Percival's book "Test-Driven Development with Python".

Go and visit the book's home planet: http://www.obeythetestinggoat.com/

Check Status

Build Status Coverage Status

Play with the app locally

Useful Commands

  • Running the Django dev server

      python3 manage.py runserver
    
  • Running the functional tests

      python3 manage.py test functional_tests
    
  • Running the unit tests

      python3 manage.py test lists