Skip to content

Commit

Permalink
Merge pull request #594 from nolar/drop-junit-results
Browse files Browse the repository at this point in the history
Drop JUnit results uploading as unused and tricky
  • Loading branch information
nolar authored Dec 3, 2020
2 parents 1c24883 + 37fd7b7 commit c5086f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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() }}
Expand All @@ -54,13 +54,6 @@ jobs:
with:
flags: unit
env_vars: PYTHON
- name: Publish unit test results
uses: EnricoMi/[email protected]
if: ${{ always() }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
comment_on_pr: false
files: junit.xml

functional:
strategy:
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/thorough.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -58,13 +58,6 @@ jobs:
with:
flags: unit
env_vars: PYTHON
- name: Publish unit test results
uses: EnricoMi/[email protected]
if: always()
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
comment_on_pr: false
files: junit.xml

functional:
strategy:
Expand Down

0 comments on commit c5086f0

Please sign in to comment.