diff options
Diffstat (limited to 'ci/run-test-slice.sh')
-rwxr-xr-x | ci/run-test-slice.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ci/run-test-slice.sh b/ci/run-test-slice.sh index a3c6795..ae80943 100755 --- a/ci/run-test-slice.sh +++ b/ci/run-test-slice.sh @@ -15,4 +15,9 @@ group "Run tests" make --quiet -C t T="$(cd t && tr '\n' ' ')" || handle_failed_tests +# We only have one unit test at the moment, so run it in the first slice +if [ "$1" == "0" ] ; then + group "Run unit tests" make --quiet -C t unit-tests-prove +fi + check_unignored_build_artifacts |