Skip to content

Commit

Permalink
Fix test step with set +e to avoid failures
Browse files Browse the repository at this point in the history
  • Loading branch information
fcaffieri committed Dec 30, 2024
1 parent dc78302 commit bef69fb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/Test_installation_assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ jobs:
id: execute_test
if: success() && steps.install_aio.outcome == 'success'
run: |
set +e
TEST_NAME="test_installation_assistant"
ansible-playbook .github/workflows/ansible-playbooks/aio_tests.yml \
-i $ALLOCATOR_PATH/inventory \
Expand All @@ -212,9 +213,7 @@ jobs:
"${{ inputs.VERBOSITY }}"
EXIT_CODE=$?
echo "execute_test=$EXIT_CODE" >> $GITHUB_OUTPUT
if [ $EXIT_CODE != 0 ]; then
exit 0
fi
- name: Compress Allocator VM directory
id: compress_allocator_files
Expand Down

0 comments on commit bef69fb

Please sign in to comment.