Filter out coverage tests for CI; put buildifier check first to make errors easier to spot in the output
Change-Id: I2a2060dea0ce2147a6e1fffec3f9d5024daa95eb
diff --git a/jjb/onos/onos-bazel-verify.sh b/jjb/onos/onos-bazel-verify.sh
index ddef796..504152d 100644
--- a/jjb/onos/onos-bazel-verify.sh
+++ b/jjb/onos/onos-bazel-verify.sh
@@ -8,6 +8,7 @@
PATH=$PATH:/home/jenkins/bin
-bazel build onos
-bazel query "tests(//...)" | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors
bazel run //:buildifier_check
+bazel build onos
+bazel query "tests(//...)" | grep -v "\-coverage" | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors
+