Skip to content

Commit adf054d

Browse files
committed
Add tempest to disabled services
Devstack does not respect the `INSTALL_TEMPEST=False` setting and still tries to install tempest when it is found in the ENABLED_SERVICES variable. We need to remove it from the list in order to ensure it won't be installed. See gophercloud/gophercloud#2408 for more info.
1 parent a2dd367 commit adf054d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

action.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ runs:
5656
EOF
5757
# horizon does not work in github action, permission error
5858
# dstat log takes too much memory to be stored by log artifacts
59-
ENABLED_SERVICES=",-horizon,-dstat"
59+
# tempest must be disabled otherwise it will get installed still
60+
ENABLED_SERVICES=",-horizon,-dstat,-tempest"
6061
if [[ "${{ inputs.enabled_services }}" != "" ]]; then
6162
ENABLED_SERVICES+=",${{ inputs.enabled_services }}"
6263
fi

0 commit comments

Comments
 (0)