From 1ee0d8053825765e552c51ef9b6e3989bb463911 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Tue, 15 Sep 2020 18:18:11 +0200 Subject: [PATCH] run-tests: also lint the plugins Use pylint also for the plugins not only the tests. --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index d68da9b..76a582a 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -11,4 +11,4 @@ podman build -t koji.test -f Dockerfile . popd run_test "pytest -v --cov-report=term --cov=osbuild test/unit/" -run_test "pylint test/**/*.py" +run_test "pylint plugins/**/*.py test/**/*.py"