fga-eps-mds/2019.1-unbrake

View on GitHub
unbrake-local/scripts/check_all

Summary

Maintainability
Test Coverage
#!/bin/bash

echo -e "\n=========================================================================="
echo "Checking everything on application unbrake-local..."
echo -e "==========================================================================\n"

cd scripts

for checker in check_format check_lint check_tests_coverage; do
    ./$checker || exit 1
done

echo -e "\n\033[0;32mCool! All checks succeeded!\033[0m"