Browse Source

test: trigger formatting tests before unit tests

Don't waste time running full unit tests only to fail CI over fmt or vet.
Anthony Romano 10 năm trước cách đây
mục cha
commit
63197782ea
1 tập tin đã thay đổi với 3 bổ sung2 xóa
  1. 3 2
      test

+ 3 - 2
test

@@ -87,7 +87,6 @@ function fmt_tests {
 		fi
 	done
 
-
 	echo "Checking for license header..."
 	licRes=$(for file in $(find . -type f -iname '*.go' ! -path './Godeps/*'); do
 			head -n3 "${file}" | grep -Eq "(Copyright|generated|GENERATED)" || echo -e "  ${file}"
@@ -98,9 +97,11 @@ function fmt_tests {
 	fi
 }
 
+# fail fast on formatting tests
+fmt_tests
+
 unit_tests
 if [ -n "$INTEGRATION" ]; then
 	integration_tests
 fi
-fmt_tests
 echo "Success"