Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
13 lines (9 sloc) 281 Bytes
.PHONY: lint, test, clean
XARGS := xargs -0 $(shell test $$(uname) = Linux && echo -r)
lint:
flake8 --show-source .
test:
pytest --cov=zetamanager --cov-report term-missing tests
clean:
find . \( -name '*.py[co]' -o -name dropin.cache \) -print0 | $(XARGS) rm
rm .coverage
You can’t perform that action at this time.