From b59e5834a077acce72b09c72089220613e9e0737 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20Kokosi=C5=84ski?= Date: Mon, 4 Feb 2019 13:55:03 +0100 Subject: [PATCH] Make Git quiet when running tests in Travis Without this change, test automation logs are polluted with about 430 lines like: Unpacking objects: 91% (51/56) See: https://docs.travis-ci.com/user/customizing-the-build/#git-clone-quiet --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5c22a55024f0f..16c2227912d37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,9 @@ cache: directories: - $HOME/.m2/repository +git: + quiet: true + install: - ./mvnw -v - |