From 0fb444fdcfa4d1da5fff7e33953b6a96ae6d009b Mon Sep 17 00:00:00 2001 From: Johannes Schumann <johannes.schumann@fau.de> Date: Thu, 12 Mar 2020 17:33:54 +0100 Subject: [PATCH] Missing .PHONY --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 2b0d4bc..d537c66 100644 --- a/Makefile +++ b/Makefile @@ -49,14 +49,14 @@ test: test-cov: python -m pytest --cov ./ --cov-report term-missing --cov-report xml:reports/coverage.xml --cov-report html:reports/coverage $(ALLNAMES) - flake8: python -m pytest --flake8 docstyle: python -m pytest --pydocstyle +doc: + cd doc && make html + cd .. - - - +.PHONY: install install-dev doc clean test test-cov flake8 docstyle buildremote -- GitLab