From 7bbdfecb0e4d02572b732fd48ff30fa77acfb931 Mon Sep 17 00:00:00 2001 From: Felix Bartels <1257835+fbartels@users.noreply.github.com> Date: Wed, 29 Jan 2020 09:30:05 +0100 Subject: [PATCH] Increase amount of lines that are printed at failure (#326) Signed-off-by: Felix Bartels --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4642f08..2ec98f1 100644 --- a/Makefile +++ b/Makefile @@ -373,7 +373,7 @@ test-startup: ## Test if all containers start up docker-compose -f $(DOCKERCOMPOSE_FILE) ps docker-compose -f $(DOCKERCOMPOSE_FILE) -f tests/test-container.yml run test || \ (docker-compose -f $(DOCKERCOMPOSE_FILE) -f tests/test-container.yml ps; \ - docker-compose -f $(DOCKERCOMPOSE_FILE) -f tests/test-container.yml logs -t --tail=20; \ + docker-compose -f $(DOCKERCOMPOSE_FILE) -f tests/test-container.yml logs -t --tail=50; \ docker-compose -f $(DOCKERCOMPOSE_FILE) -f tests/test-container.yml stop; \ docker ps --filter name=kopano_test* -aq | xargs docker rm -f; \ exit 1)