~harlowja/cloud-init/fix-auto-bool

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Mike Milner
  • Date: 2012-01-12 14:31:19 UTC
  • mto: (499.2.2 add-ca-certs)
  • mto: This revision was merged to the branch mainline in revision 501.
  • Revision ID: mike.milner@canonical.com-20120112143119-y5ud4ecjorsaiwer
Add initial unit test framework.
Add initial tests for mergedict.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
all: test pylint pyflakes
 
3
 
 
4
pylint:
 
5
        -pylint cloudinit
 
6
 
 
7
pyflakes:
 
8
        -pyflakes .
 
9
 
 
10
test:
 
11
        -nosetests tests/unittests/
 
12
 
 
13
.PHONY: test pylint pyflakes
 
14