Signed-off-by: John Snow <js...@redhat.com> --- tests/qemu-iotests/Makefile | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/tests/qemu-iotests/Makefile b/tests/qemu-iotests/Makefile index 77da9fd96d..fd85eb5bae 100644 --- a/tests/qemu-iotests/Makefile +++ b/tests/qemu-iotests/Makefile @@ -1,4 +1,6 @@ PYMODULES = $(wildcard *.py) +PYTESTS := $(shell grep -rl '^\#!/usr/bin/env python3' *) +PYTESTS := $(filter-out $(PYMODULES), $(PYTESTS)) CLEANFILES= *.out.bad *.notrun check.log check.time* @@ -10,3 +12,4 @@ clean: delint: pylint $(PYMODULES) + pylint --disable=R,C,W $(PYTESTS) -- 2.21.1