justinleet commented on a change in pull request #1315: METRON-1956 add missing
tests and some of the many shellcheck fixes
URL: https://github.com/apache/metron/pull/1315#discussion_r244821253
##########
File path: dev-utilities/committer-utils/metron-committer-common
##########
@@ -333,19 +333,125 @@ function run_tests {
read -p " run test suite? [yN] " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
- if [ "${UPSTREAM}" == "${METRON_UPSTREAM}" ]; then
- mvn -q -T 2C -DskipTests clean install &&
- mvn -q -T 2C surefire:test@unit-tests &&
- mvn -q surefire:test@integration-tests &&
- mvn -q test --projects metron-interface/metron-config &&
- dev-utilities/build-utils/verify_licenses.sh
- elif [ "${UPSTREAM}" == "${BRO_PLUGIN_UPSTREAM}" ]; then
+ if [[ "${UPSTREAM}" == "${METRON_UPSTREAM}" ]]; then
+ clean_metron_src
+
+ run_mvn_install
+
+ run_mvn_unit_tests
+
+ run_mvn_integration_tests
+
+ run_mvn_ui_tests
+
+ run_mvn_build_rpms
+
+ verify_licenses
+ elif [[ "${UPSTREAM}" == "${BRO_PLUGIN_UPSTREAM}" ]]; then
echo "We don't currently support running metron-bro-plugin-kafka tests
in this script"
fi
fi
}
+#
+# Cleans the metron src and rpms
+#
+function clean_metron_src {
+ echo ""
Review comment:
Total nit, but if this is just printing a couple newlines, why not just
`printf "\n\n"`?
Also, why is this the only function that does it from the ones that get run?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services