From 7cec24ab3b320bc9789892b9ac86788b95700ebf Mon Sep 17 00:00:00 2001 From: Hugo Musso Gualandi Date: Fri, 9 Aug 2024 19:37:09 -0300 Subject: [PATCH] Compile things before running tests If there is a compilation error, then there's no point in running the tests. --- run-tests | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/run-tests b/run-tests index 2427a93..5e9f89c 100755 --- a/run-tests +++ b/run-tests @@ -6,5 +6,4 @@ # ./run-tests # ./run-tests -k # ./run-tests spec/traceback_spec.lua - -busted --verbose --no-keep-going "$@" +make tests && busted --verbose --no-keep-going "$@"