Skip to content

Commit

Permalink
. e added build Summary to CI
Browse files Browse the repository at this point in the history
Co-Authored-By: 4dsherwood <4dsherwood@users.noreply.github.com>
Co-Authored-By: Nitsan Avni <nitsanav@gmail.com>
Co-Authored-By: homeropessoa <54290716+homeropessoa@users.noreply.github.com>
  • Loading branch information
4 people committed Nov 24, 2024
1 parent b738491 commit 315d60a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,10 @@ jobs:
- name: Test
run: |
./run_tests.sh
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/test-reports/*.xml'
detailed_summary: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@ venv
.DS_Store
tests/approved_files/VerifyTests.test_verify_automatic_approval.approved.txt
tests/approved_files/VerifyTests.test_verify_automatic_approval.approved.txt
/test-reports
4 changes: 2 additions & 2 deletions run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /usr/bin/env bash
set -euo pipefail

python3 -m pip --disable-pip-version-check install tox
tox -e py
python -m pip --disable-pip-version-check install tox
tox -e py -- --junitxml=test-reports/report.xml
tox -e test__py_typed_files_exist

0 comments on commit 315d60a

Please sign in to comment.