Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/testsPython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,16 @@ jobs:
notifications:
needs: python-unit-tests
runs-on: ubuntu-latest
if: always() # Add this line
steps:
- name: Notify on test results
run: |
if [ "${{ needs.python-unit-tests.result }}" == "success" ]; then
echo "success notifications go here"
echo "::notice title=Tests Passed::All Python tests passed successfully! ✅"
echo "## ✅ Test Success" >> $GITHUB_STEP_SUMMARY
echo "All tests passed successfully" >> $GITHUB_STEP_SUMMARY
else
echo "failure notifications go here"
echo "::error title=Tests Failed::Some Python tests failed. ❌"
echo "## ❌ Test Failure" >> $GITHUB_STEP_SUMMARY
echo "Some tests failed." >> $GITHUB_STEP_SUMMARY
Comment on lines +78 to +83
Comment on lines 76 to +83
fi
Loading