File tree 3 files changed +2
-10
lines changed
3 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 13
13
run : make dev-install
14
14
- name : Run tests
15
15
run : make test
16
- - name : Report
17
- uses : 5monkeys/cobertura-action@master
18
- with :
19
- path : coverage.xml
20
- minimum_coverage : 90
21
- skip_covered : false
22
- fail_below_threshold : true
23
16
24
17
check :
25
18
runs-on : ubuntu-20.04
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ MANIFEST
33
33
/.hypothesis
34
34
/.coverage
35
35
/.coverage. *
36
- /coverage.xml
37
36
38
37
# user makefile config
39
38
/Makefile.conf
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ docs-%:
46
46
47
47
test :
48
48
$(PYTHON ) -m pytest \
49
- --cov-report html --cov-report xml:coverage.xml --cov-report term \
49
+ --cov-report html --cov-report term \
50
50
--cov yosys_mau \
51
51
-n auto -q $(O )
52
52
@@ -71,4 +71,4 @@ dev-install:
71
71
ci : formatting lint typecheck test docs-html
72
72
73
73
clean : docs-clean
74
- rm -rf .coverage .pytest_cache .mypy_cache .ruff_cache htmlcov coverage.xml
74
+ rm -rf .coverage .pytest_cache .mypy_cache .ruff_cache htmlcov
You can’t perform that action at this time.
0 commit comments