Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,24 @@ jobs:
pip install -r dev-requirements.txt
- run: |
make coverage
continue-on-error: true

- name: Test Report
uses: dorny/[email protected]
if: success() || failure()
continue-on-error: true
with:
name: GO Tests
path: report.xml
reporter: java-junit

- name: Test Summary
uses: test-summary/action@v2
with:
paths: |
report.xml
if: success() || failure()
continue-on-error: true

tests:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ it-test:

.PHONY: coverage
coverage:
pytest tests/unit_tests --cov=deep --cov-report term --cov-fail-under=84 --cov-report html --cov-branch
pytest tests/unit_tests --cov=deep --cov-report term --cov-fail-under=84 --cov-report html --cov-branch --junitxml=report.xml

.PHONY: lint
lint:
Expand Down