Skip to content

Commit 41e2115

Browse files
Skip unit test for IaaS (#461)
* Skip IaaS test * Continue loop
1 parent 863238c commit 41e2115

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/test-go.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ fi
2929

3030
for service_dir in ${SERVICES_PATH}/*; do
3131
service=$(basename ${service_dir})
32+
33+
# Our unit test template fails because it doesn't support fields with validations,
34+
# such as the UUID component used by IaaS. We introduce this hardcoded skip until we fix it
35+
if [ "${service}" = "iaas" ]; then
36+
echo ">> Skipping services/${service}"
37+
continue
38+
fi
39+
3240
echo ">> Testing services/${service}"
3341
cd ${service_dir}
3442
if [ "${SKIP_NON_GENERATED_FILES}" = true ]; then

0 commit comments

Comments
 (0)