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

all: test

pylint:
	pylint cloudinit

pyflakes:
	pyflakes .

test:
	nosetests tests/unittests/

.PHONY: test pylint pyflakes