From 37fd7b7d5d9c52d560032a7cdb223dfd2a47baef Mon Sep 17 00:00:00 2001 From: Sergey Vasilyev Date: Fri, 4 Dec 2020 00:36:57 +0100 Subject: [PATCH] Drop JUnit results uploading as unused and tricky --- .github/workflows/ci.yaml | 9 +-------- .github/workflows/thorough.yaml | 9 +-------- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 22e967cc..53c93db3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,7 +39,7 @@ jobs: - run: pip install -r requirements.txt - run: mypy kopf --strict --pretty - - run: pytest --color=yes --cov=kopf --cov-branch --junit-xml=junit.xml + - run: pytest --color=yes --cov=kopf --cov-branch - name: Publish coverage to Coveralls.io if: ${{ success() }} @@ -54,13 +54,6 @@ jobs: with: flags: unit env_vars: PYTHON - - name: Publish unit test results - uses: EnricoMi/publish-unit-test-result-action@v1.5 - if: ${{ always() }} - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - comment_on_pr: false - files: junit.xml functional: strategy: diff --git a/.github/workflows/thorough.yaml b/.github/workflows/thorough.yaml index c96d667d..ba8e658a 100644 --- a/.github/workflows/thorough.yaml +++ b/.github/workflows/thorough.yaml @@ -43,7 +43,7 @@ jobs: - run: pip install -r requirements.txt - run: mypy kopf --strict --pretty - - run: pytest --color=yes --cov=kopf --cov-branch --junit-xml=junit.xml + - run: pytest --color=yes --cov=kopf --cov-branch - name: Publish coverage to Coveralls.io if: success() @@ -58,13 +58,6 @@ jobs: with: flags: unit env_vars: PYTHON - - name: Publish unit test results - uses: EnricoMi/publish-unit-test-result-action@v1.5 - if: always() - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - comment_on_pr: false - files: junit.xml functional: strategy: