summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9bc7e8a25132a9da4847a74db58b53bf7fdb9b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

all: test pylint pyflakes

pylint:
	-pylint cloudinit

pyflakes:
	-pyflakes .

test:
	-nosetests tests/unittests/

.PHONY: test pylint pyflakes