diff --git a/utils/set_test_modules b/utils/set_test_modules index b93e38cedfb1ba09c26417858a5e72b9903b2c75..6f73ef870c44c5d93098e2f843e998fa8dc24fca 100644 --- a/utils/set_test_modules +++ b/utils/set_test_modules @@ -18,7 +18,12 @@ pushd "${TOPDIR}" >/dev/null 2>&1 || die "Failed to change directory." files_list=$(mktemp) -BASE_BRANCH=${BASE_BRANCH:-"master"} +if [ -z "$BASE_BRANCH" ] +then + git remote add _temp https://github.com/freeipa/ansible-freeipa + git fetch --prune --no-tags --quiet _temp + BASE_BRANCH="master" +fi git diff "${BASE_BRANCH}" --name-only > "${files_list}" # Get all modules that should have tests executed