More concise test output when running tests

Print test errors to stdout, avoid scrolling due to passed tests results

Change-Id: I7ba4745e8de1ecbcb4f3cd3957623705a0fb69f8
diff --git a/tools/dev/bash_profile b/tools/dev/bash_profile
index 8fe5d5c..c4f54d0 100644
--- a/tools/dev/bash_profile
+++ b/tools/dev/bash_profile
@@ -60,7 +60,7 @@
 
 # Short-hand for ONOS build, package and test.
 alias op="SHLVL=1 bazel build //:onos"
-alias ot="bazel run //:buildifier_check && bazel query 'tests(//...)' | SHLVL=1 xargs bazel test"
+alias ot="bazel run //:buildifier_check && bazel query 'tests(//...)' | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors"
 alias ob="op && ot"
 alias obd="SHLVL=1 bazel build //docs:external //docs:internal"