From 291225c322093f1ad390983e1dcb8fd3f2fefd09 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Sat, 31 Oct 2015 11:38:53 +0000 Subject: [PATCH] Makefile phony fix --- Makefile | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index b7ef9dcd..80be0617 100644 --- a/Makefile +++ b/Makefile @@ -14,15 +14,27 @@ .PHONY: alltests + all + flake8 + test + testnose + testsetup + testcoverage + installdev + install + build + pypimeta + pypi + none alltests: - testcoverage - flake8 - testsetup + @make testcoverage + @make flake8 + @make testsetup all: - alltests - build + @make alltests + @make build flake8: flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/ @@ -60,4 +72,4 @@ pypi: twine upload dist/* none: - none # used for unit testing + # used for unit testing