Add the ansible repo to your package manager. Update the system and verify that you have the newest ansible version installed. Apt comes with ansible, but it is not the newest version.
sudo apt-add-repository ppa:ansible/ansible;
sudo apt update -y && sudo apt upgrade -y;
sudo apt install ansible;
ansible --version;
... or just run the installScript.
Tests are run using vagrant.
Just run this shell-script or, if you have installed ansible on your machine, run this playbook.
From root directory.
vagrant init;
vagrant up;
vagrant provision;