Skip to content

Commit

Permalink
fix: make Python tests more noticeable
Browse files Browse the repository at this point in the history
Suggestion from canonical/starbase#272
  • Loading branch information
lengau committed Oct 23, 2024
1 parent c9539ca commit af1ccdb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test-python/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ runs:
# shellcheck disable=SC1083 # (thinks a GitHub variable is a literal "}")
for UV_PYTHON in ${{ inputs.python-versions }}; do
export UV_PYTHON
echo "::group::Setup tests on Python ${UV_PYTHON}"
echo "::notice title=PYTHON-${UV_PYTHON}::Test with python ${UV_PYTHON}"
echo "::group::Setup"
make setup-tests
echo "::endgroup::"
echo "::group::Run tests on Python ${UV_PYTHON}"
echo "::group::Run tests"
make "${{ inputs.target }}"
echo "::endgroup::"
done
Expand Down

0 comments on commit af1ccdb

Please sign in to comment.