Skip to content
/ python Public template

A simple starter project for TDD in Python

Notifications You must be signed in to change notification settings

tdd-starters/python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python TDD Starter

Starter project for getting started with TDD in Python. Based on [https://github.com/raniz85/python-template].

The file _tests/test_calculator.py contains one test case and a few in comments. Start by coming up with a few test cases and add them to the lists, then implement them one at a time, test-driving the solution forwards.

Libraries

Refer to the template for more information about what the starter contains.

Running

There's a makefile that can be used to run all the tests. Execute:

$ make test

to run all the tests.