Files
cloud-init/Makefile

15 lines
127 B
Makefile

all: test
pylint:
pylint cloudinit
pyflakes:
pyflakes .
test:
nosetests tests/unittests/
.PHONY: test pylint pyflakes