1
0
Fork 0

Makefile: Run pylint on the tests too

The tests are now in a good shape, so we can now run pylint on them
without getting a huge list of errors. In fact, we should lint them
to decrease the likelihood they'll go stale again.

Signed-off-by: Ondřej Lysoněk <olysonek@redhat.com>
This commit is contained in:
Ondřej Lysoněk 2019-02-19 16:17:57 +01:00
parent 32666498ba
commit afa6611f39

View file

@ -215,6 +215,6 @@ test:
$(PYTHON) -m unittest discover tests
lint:
$(PYLINT) -E -f parseable tuned *.py
$(PYLINT) -E -f parseable tuned *.py tests
.PHONY: clean archive srpm tag test lint