Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions scripts/test-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ fi

for service_dir in ${SERVICES_PATH}/*; do
service=$(basename ${service_dir})

# Our unit test template fails because it doesn't support fields with validations,
# such as the UUID component used by IaaS. We introduce this hardcoded skip until we fix it
if [ "${service}" = "iaas" ]; then
echo ">> Skipping services/${service}"
continue
fi

echo ">> Testing services/${service}"
cd ${service_dir}
if [ "${SKIP_NON_GENERATED_FILES}" = true ]; then
Expand Down