From 2db80fafc46107581f9f2d92fe44279fe242acf8 Mon Sep 17 00:00:00 2001 From: impinball Date: Tue, 26 Jan 2016 06:00:01 -0500 Subject: [PATCH] Add test-all rule --- .travis.yml | 3 +++ makefile | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 88f9958..3ddb429 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,3 +5,6 @@ node_js: - "iojs" - "4" - "5.1" + +# Test against all the rules, not just the basic tests +script: make test-all diff --git a/makefile b/makefile index 353da54..73e27ca 100644 --- a/makefile +++ b/makefile @@ -24,4 +24,6 @@ test-docs: all doc/how-macros-work.markdown doc/basics-reference.markdown @txm doc/how-macros-work.markdown @txm doc/basics-reference.markdown +test-all: test test-readme test-docs + .PHONY: all clean test test-readme test-docs