From d57f99386816b070214a46eceb758463d518329a Mon Sep 17 00:00:00 2001 From: Sam <61994039+fourthDimensional@users.noreply.github.com> Date: Sat, 31 May 2025 20:20:16 -0500 Subject: [PATCH] Remove test results upload action and add step to print test summary --- .gitea/workflows/run_tests.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/run_tests.yml b/.gitea/workflows/run_tests.yml index 3dbd95c..68a0261 100644 --- a/.gitea/workflows/run_tests.yml +++ b/.gitea/workflows/run_tests.yml @@ -32,9 +32,6 @@ jobs: path: pytest-results.xml retention-days: 5 - - uses: dorny/test-reporter@v2 - with: - artifact: pytest-results # artifact name - name: Pytest Tests # Name of the check run which will be created - path: '*.xml' # Path to test results (inside artifact .zip) - reporter: jest-junit # Format of test results \ No newline at end of file + - name: Print test summary + if: always() + run: uv run pytest tests --tb=short || true \ No newline at end of file