From 3a9c3f41c6ff8e2d1e59ca25da16646072633c3d Mon Sep 17 00:00:00 2001 From: Satrajit Ghosh Date: Fri, 1 Nov 2013 10:39:54 -0400 Subject: [PATCH] enh: added checkspecs to makefiel --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1de8c23d23..a2a606f996 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,12 @@ html: @echo "building docs" make -C doc clean html -check-before-commit: trailing-spaces html test +specs: + @echo "Checking specs and autogenerating spec tests" + python tools/checkspecs.py + +check-before-commit: trailing-spaces html test specs @echo "removed spaces" @echo "built docs" @echo "ran test" + @echo "generated spec tests"