Log START and END of tests in combined container logs
Change-Id: I4aaee399d0289a497d6400466cdc193d5eaf57e4
diff --git a/Makefile b/Makefile
index 45ec35f..a7d53cf 100644
--- a/Makefile
+++ b/Makefile
@@ -152,6 +152,12 @@
source ./$</bin/activate ; set -u ;\
python -m robot.tidy --inplace $(ROBOT_FILES);
+# Install the 'kail' tool if needed: https://github.com/boz/kail
+KAIL_PATH ?= /usr/local/bin
+$(KAIL_PATH)/kail:
+ bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp
+ mv /tmp/kail $(KAIL_PATH)
+
## Variables for gendocs
TEST_SOURCE := $(wildcard tests/*/*.robot)
TEST_BASENAME := $(basename $(TEST_SOURCE))