From cc8470368e80963b3b72bcdc9ec8757597ec5ec2 Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Sun, 1 Oct 2017 18:20:53 +0300 Subject: [PATCH] Remove test from formatting --- .ci/format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/format.sh b/.ci/format.sh index be15598a..89fa4e88 100755 --- a/.ci/format.sh +++ b/.ci/format.sh @@ -9,6 +9,6 @@ set -o errexit set -o pipefail set -o nounset -FILES=`find include src tests -type f -type f \( -iname "*.cc" -o -iname "*.h" \)` +FILES=`find include src -type f -type f \( -iname "*.cc" -o -iname "*.h" \)` clang-format -i $FILES && git diff --exit-code