Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OPENAI_API_KEY=ADD-YOUR-OPENAI_API_KEY-HERE
ENVIRONMENT=local
DOCKERHUB_USERNAME=ADD-YOUR-DOCKERHUB_USERNAME-HERE
DOCKERHUB_USERNAME=vwong12
DOCKERHUB_ACCESS_TOKEN=ADD-YOUR-DOCKERHUB_ACCESS_TOKEN-HERE
LLM_TOOL_CHOICE=required
LOGGING_LEVEL=20
Expand Down
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