Skip to content

Commit

Permalink
Adds final printout in Pandas 3.0 test step
Browse files Browse the repository at this point in the history
  • Loading branch information
ilumsden committed Nov 4, 2024
1 parent 7a81ead commit 7def779
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test-for-pandas-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,16 @@ jobs:
PYTHONPATH=. $(which pytest)
status=$?
if [ ${status} -ne 0 ]; then
echo "=================================="
echo "Unit tests with Pandas 3.0 FAILED!"
echo "=================================="
echo "::warning::Optional CI test with Pandas 3 failed"
echo "optional_fail=true" >> "${GITHUB_OUTPUT}"
echo "optional_fail_status=${status}" >> "${GITHUB_OUTPUT}"
else
echo "=================================="
echo "Unit tests with Pandas 3.0 PASSED!"
echo "=================================="
fi
exit 0
Expand Down

0 comments on commit 7def779

Please sign in to comment.