From 708d2e769cdc5619350a4b3ecdf95926406e2f98 Mon Sep 17 00:00:00 2001 From: Anton Joubert Date: Thu, 19 Mar 2020 13:02:13 +0200 Subject: [PATCH] Update linting path for native namespace pkg See https://github.com/PyCQA/pylint/issues/2108 --- test-harness/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-harness/Makefile b/test-harness/Makefile index dc149f5d..67cac2f6 100644 --- a/test-harness/Makefile +++ b/test-harness/Makefile @@ -36,7 +36,7 @@ test: lint: python3 -m pip install pylint2junit; \ mkdir -p /build/reports; \ - cd /app && pylint --output-format=parseable ska.base | tee /build/code_analysis.stdout; \ - cd /app && pylint --output-format=pylint2junit.JunitReporter ska.base > /build/reports/linting.xml; + cd /app && pylint --output-format=parseable src/ska | tee /build/code_analysis.stdout; \ + cd /app && pylint --output-format=pylint2junit.JunitReporter src/ska > /build/reports/linting.xml; .PHONY: all test lint