summaryrefslogtreecommitdiff
path: root/Biz/Bild
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2021-01-15 22:18:03 -0500
committerBen Sima <ben@bsima.me>2021-01-15 22:18:03 -0500
commit4ea4faa4f6405801de19d0ea56e8bc29aa4362e1 (patch)
tree9028fa5b67d7ee57176e48e589aac1972c37efcb /Biz/Bild
parente77cdc025b0e80049344f258d9ca170d0953d0d7 (diff)
Add bild --test
This argument will run the tests for an output after building. It's active in 'ci' so running that will ensure tests are passing. This way testing a namespace and building a namespace are as close together as possible, so presumably it will be that much easier to write good tests.
Diffstat (limited to 'Biz/Bild')
-rw-r--r--Biz/Bild/ShellHook.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Bild/ShellHook.sh b/Biz/Bild/ShellHook.sh
index 05707dc..bb529dd 100644
--- a/Biz/Bild/ShellHook.sh
+++ b/Biz/Bild/ShellHook.sh
@@ -114,7 +114,7 @@ alias sentry="watch --color --exec bash -c run-sentry"
# Poor man's ci
function run-ci() {
- lint **/* && bild **/*
+ lint **/* && bild --test **/*
}
alias ci="time run-ci"