From febf6d4c2be3d7c3249954271bb588a89b942a2a Mon Sep 17 00:00:00 2001 From: softir <elisabetta.giani@inaf.it> Date: Mon, 6 Apr 2020 09:22:13 +0200 Subject: [PATCH] AT5-370: project Makefile is in docker folder. --- Makefile | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 462303c..0000000 --- a/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# Use bash shell with pipefail option enabled so that the return status of a -# piped command is the value of the last (rightmost) commnand to exit with a -# non-zero status. This lets us pipe output into tee but still exit on test -# failures. -SHELL = /bin/bash -.SHELLFLAGS = -o pipefail -c - -all: test lint - -# The following steps copy across useful output to this volume which can -# then be extracted to form the CI summary for the test procedure. -test: - - python setup.py test | tee ./build/setup_py_test.stdout; \ - mv coverage.xml ./build/reports/code-coverage.xml; - -# The following steps copy across useful output to this volume which can -# then be extracted to form the CI summary for the test procedure. -lint: - - # FIXME pylint needs to run twice since there is no way go gather the text and junit xml output at the same time - pip3 install pylint2junit; \ - pylint --output-format=parseable ska_python_skeleton | tee ./build/code_analysis.stdout; \ - pylint --output-format=pylint2junit.JunitReporter ska_python_skeleton > ./build/reports/linting.xml; - - -.PHONY: all test lint -- GitLab