From e0bf9dd45b66f6cc4cdc48ccec1728d6207c7426 Mon Sep 17 00:00:00 2001 From: martin-sicho Date: Wed, 10 Jul 2024 16:27:04 +0200 Subject: [PATCH] remove JUnit report file generation --- .github/workflows/test.yml | 6 ------ .github/workflows/test_light.yml | 6 ------ 2 files changed, 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e01d94a..574b934 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,12 +60,6 @@ jobs: python -c "import platform; print('System info: ', platform.system(), platform.release())" python -c "import genui; print('GenUI version:', genui.__version__)" - - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 - if: success() || failure() # always run even if the previous step fails - with: - report_paths: 'testing/test_pytest/test_report.xml' - - name: Run migrations run: cd src && python manage.py migrate diff --git a/.github/workflows/test_light.yml b/.github/workflows/test_light.yml index d2e593d..e887521 100644 --- a/.github/workflows/test_light.yml +++ b/.github/workflows/test_light.yml @@ -58,12 +58,6 @@ jobs: python -c "import platform; print('System info: ', platform.system(), platform.release())" python -c "import genui; print('GenUI version:', genui.__version__)" - - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 - if: success() || failure() # always run even if the previous step fails - with: - report_paths: 'testing/test_pytest/test_report.xml' - - name: Run migrations run: cd src && python manage.py migrate