File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 4242 pip install -r dev-requirements.txt
4343 - run : |
4444 make coverage
45+ continue-on-error: true
46+
47+ - name : Test Report
48+ 49+ if : success() || failure()
50+ continue-on-error : true
51+ with :
52+ name : Python Tests
53+ path : report.xml
54+ reporter : java-junit
55+
56+ - name : Test Summary
57+ uses : test-summary/action@v2
58+ with :
59+ paths : |
60+ report.xml
61+ if : success() || failure()
62+ continue-on-error : true
4563
4664 tests :
4765 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ it-test:
2424
2525.PHONY : coverage
2626coverage :
27- pytest tests/unit_tests --cov=deep --cov-report term --cov-fail-under=84 --cov-report html --cov-branch
27+ pytest tests/unit_tests --cov=deep --cov-report term --cov-fail-under=84 --cov-report html --cov-branch --junitxml=report.xml
2828
2929.PHONY : lint
3030lint :
You can’t perform that action at this time.
0 commit comments