~ltrager/maas/fix_enlistment_test

1
2
3
4
5
6
7
8
lint: lint-py
	pocketlint maas-cluster-controller-package-test

lint-py: sources = $(wildcard *.py)
lint-py:
	flake8 --ignore=E123 --config=/dev/null $(sources)

.PHONY: lint lint-py