Skip to content

Commit

Permalink
Update linting path for native namespace pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoubertza committed Mar 19, 2020
1 parent 614c781 commit 708d2e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-harness/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 708d2e7

Please sign in to comment.