Skip to content

Commit

Permalink
Fix not fail playbook test
Browse files Browse the repository at this point in the history
  • Loading branch information
fcaffieri committed Dec 30, 2024
1 parent b931d64 commit 2610044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Test_installation_assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ jobs:
"${{ inputs.VERBOSITY }}"
EXIT_CODE=$?
echo "install_aio=$EXIT_CODE" >> $GITHUB_OUTPUT
if [ $EXIT_CODE != 0 ]; then
exit 1
fi
- name: Execute Python test playbook
id: execute_test
Expand All @@ -209,9 +212,6 @@ jobs:
"${{ inputs.VERBOSITY }}"
EXIT_CODE=$?
echo "execute_test=$EXIT_CODE" >> $GITHUB_OUTPUT
if [ $EXIT_CODE != 0 ]; then
exit 1
fi
- name: Compress Allocator VM directory
id: compress_allocator_files
Expand Down

0 comments on commit 2610044

Please sign in to comment.