blob: 2d8716427f2adba815ce5e80533adba66531a52c [file] [log] [blame]
#!/usr/bin/env bash
set -e
echo "Running nose2 tests..."
cd lib
nose2 -v -B
echo "SUCCESS: All nose2 tests completed."
echo "Running Ansible-lint..."
cd ..
ansible-lint -x no-changed-when,risky-file-permissions,unnamed-task,var-naming
echo "SUCCESS: Ansible-lint completed."
echo "Running flake8 to check Python code..."
flake8
echo "SUCCESS: flake8 completed."
echo "Checking for files which have no newline at end of file..."
git ls-files | tr '\n' '\0' | xargs -0 -L1 -n1 "$(dirname "$0")/checkMissingEOF"
echo "SUCCESS: All files have newline at the end."
echo "All tests passed!"