Commit 3f70357a authored by Elisabetta Giani's avatar Elisabetta Giani
Browse files

Removed bugs in pylint execution.

parent f3962adf
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ persistent=yes

# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
load-plugins=pylint_junit
load-plugins=

[MESSAGES CONTROL]

@@ -54,7 +54,7 @@ disable= R,C,W,
# (visual studio) and html. You can also give a reporter class, eg
# mypackage.mymodule.MyReporterClass.
#output-format=parseable
output-format=junit
output-format=parseable

# Put messages in a separate file for each module / package specified on the
# command line instead of printing them on stdout. Reports (if any) will be
+2 −2
Original line number Diff line number Diff line
@@ -26,10 +26,10 @@ test:
	fi;
lint:
	# pylint needs to run twice
	cd /app && pylint -f colorized csp-lmc-mid| tee code_analysis.stdout; \
	cd /app && pylint -f colorized csp_lmc_mid| tee code_analysis.stdout; \
	cd /app && pylint csp_lmc_mid > lint_output.xml; \
	if [ -d /build ]; then \
		mv /app/code_analysis.stdout /build/csplmc_code_analysis.stdout; \
		mv /app/code_analysis.stdout /build/mid-csp-lmc_code_analysis.stdout; \
		mv /app/lint_output.xml /build/lint_output.xml; \
	fi;