From a90a3cff3aac8f2661ae706fcf55d740c16e34a1 Mon Sep 17 00:00:00 2001 From: Jeffrey Regan Date: Fri, 9 Feb 2018 16:36:53 -0800 Subject: [PATCH] add demo testing --- pre-commit.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pre-commit.sh b/pre-commit.sh index 9824c3c4e..551c65954 100755 --- a/pre-commit.sh +++ b/pre-commit.sh @@ -30,4 +30,8 @@ echo "Running go test" go test -v ./... rc=$((rc || $?)) +echo "Testing kinflate demos" +mdrip --mode test --label test ./cmd/kinflate +rc=$((rc || $?)) + exit $rc