summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0a73f987a88754d2ff8f6fa1e3a47bd76ecd6178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CWD=$(shell pwd)
PY_FILES=$(shell find cloudinit bin -name "*.py")

all: test

pylint:
	$(CWD)/tools/run-pylint $(PY_FILES)

pyflakes:
	pyflakes $(PY_FILES)

test:
	nosetests tests/unittests/

.PHONY: test pylint pyflakes