Skip to content

Commit

Permalink
removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
minimike86 committed Oct 26, 2024
1 parent 5ba3405 commit 3c3497e
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,23 +89,23 @@ jobs:
echo "### 🎉 Test Summary Report 🎉" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
# # Display results in table format
# echo "| Status | Test |" >> $GITHUB_STEP_SUMMARY
# echo "| ------ | ---- |" >> $GITHUB_STEP_SUMMARY
#
# # Determine the overall result
# if grep -q "failed" pytest_output.txt; then
# echo "| ❌ | Some tests failed |" >> $GITHUB_STEP_SUMMARY
# else
# echo "| ✅ | All tests passed |" >> $GITHUB_STEP_SUMMARY
# fi
#
# # Add coverage output
# echo "" >> $GITHUB_STEP_SUMMARY
# echo "### 🚧 Coverage Output 🚧" >> $GITHUB_STEP_SUMMARY
# echo '```' >> $GITHUB_STEP_SUMMARY
# cat coverage_output.txt >> $GITHUB_STEP_SUMMARY
# echo '```' >> $GITHUB_STEP_SUMMARY
# Display results in table format
echo "| Status | Test |" >> $GITHUB_STEP_SUMMARY
echo "| ------ | ---- |" >> $GITHUB_STEP_SUMMARY
# Determine the overall result
if grep -q "failed" pytest_output.txt; then
echo "| ❌ | Some tests failed |" >> $GITHUB_STEP_SUMMARY
else
echo "| ✅ | All tests passed |" >> $GITHUB_STEP_SUMMARY
fi
# Add coverage output
echo "" >> $GITHUB_STEP_SUMMARY
echo "### 🚧 Coverage Output 🚧" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
cat coverage_output.txt >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
# Add full detailed output
echo "" >> $GITHUB_STEP_SUMMARY
Expand Down

0 comments on commit 3c3497e

Please sign in to comment.