ci: fix allow fail e2e (#17956)

* echo allow fail

* in
This commit is contained in:
Jirka Borovec 2023-06-30 20:48:21 +02:00 committed by GitHub
parent 0af51fa3be
commit bdac61a118
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -131,6 +131,7 @@ jobs:
printf "local id: $(local_id)\n"
python --version
pip --version
echo "allow fail: ${{ in(variables['name'], 'quick_start', 'template_react_ui') }}"
displayName: 'Info'
# TODO: we are testing it as `lightning`, so add also version for `lightning_app`
@ -178,7 +179,7 @@ jobs:
LIGHTNING_USERNAME: $(LIGHTNING_USERNAME_PROD)
LIGHTNING_CLOUD_URL: $(LIGHTNING_CLOUD_URL_PROD)
# Todo: investigate why these apps are failing
continueOnError: ${{ contains('quick_start|template_react_ui', variables['name']) }}
continueOnError: ${{ in(variables['name'], 'quick_start', 'template_react_ui') }}
displayName: 'Run the tests'
- task: PublishPipelineArtifact@1