We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 863238c commit 41e2115Copy full SHA for 41e2115
scripts/test-go.sh
@@ -29,6 +29,14 @@ fi
29
30
for service_dir in ${SERVICES_PATH}/*; do
31
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
40
echo ">> Testing services/${service}"
41
cd ${service_dir}
42
if [ "${SKIP_NON_GENERATED_FILES}" = true ]; then
0 commit comments