15 lines
127 B
Makefile
15 lines
127 B
Makefile
|
|
all: test
|
|
|
|
pylint:
|
|
pylint cloudinit
|
|
|
|
pyflakes:
|
|
pyflakes .
|
|
|
|
test:
|
|
nosetests tests/unittests/
|
|
|
|
.PHONY: test pylint pyflakes
|
|
|