function pre_install {
    echo "test ALL=(ALL:ALL) NOPASSWD: ALL" | tee /etc/sudoers.d/test-automation chmod 440 /etc/sudoers.d/test-automation chown root:root /etc/sudoers.d/test-automation


}

function prerm_install {
    find /usr/lib/python3/spc-packages/test_automation_suite -type d -name '__pycache__' -exec rm -r {} +
    find /usr/lib/python3/dist-packages/test_automation_suite -type d -name '__pycache__' -exec rm -r {} +

}

function postrm_install {
    rm -f  /etc/sudoers.d/test-automation


}

