diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index 657a4c6a5..0c2f50e1e 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -61,8 +61,7 @@ jobs: echo "$package_name line-rate: $line_rate" done) echo "Coverage Summary: $coverage_summary" - # echo "::set-output name=summary::$coverage_summary" - echo "summary=$coverage_summary" >> $GITHUB_OUTPUT + echo "::set-output name=summary::$coverage_summary" - name: Generate test report summary if: matrix.os == 'ubuntu-latest' @@ -74,8 +73,7 @@ jobs: skipped=$(grep -oP 'skipped="\K\d+' $test_file) test_summary="Total tests: $total_tests, Failures: $failures, Skipped: $skipped" echo "Test Summary: $test_summary" - # echo "::set-output name=summary::$test_summary" - echo "summary=$test_summary" >> $GITHUB_OUTPUT + echo "::set-output name=summary::$test_summary" - name: Comment PR with coverage and test report if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest'