Skip to content

Commit 652975b

Browse files
authored
Merge pull request #14 from YosysHQ/revert-10-ci_coverage
Revert "Add CI coverage"
2 parents 8543895 + c922424 commit 652975b

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

.github/workflows/ci.yml

-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@ jobs:
1313
run: make dev-install
1414
- name: Run tests
1515
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
2316

2417
check:
2518
runs-on: ubuntu-20.04

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ MANIFEST
3333
/.hypothesis
3434
/.coverage
3535
/.coverage.*
36-
/coverage.xml
3736

3837
# user makefile config
3938
/Makefile.conf

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ docs-%:
4646

4747
test:
4848
$(PYTHON) -m pytest \
49-
--cov-report html --cov-report xml:coverage.xml --cov-report term \
49+
--cov-report html --cov-report term \
5050
--cov yosys_mau \
5151
-n auto -q $(O)
5252

@@ -71,4 +71,4 @@ dev-install:
7171
ci: formatting lint typecheck test docs-html
7272

7373
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

0 commit comments

Comments
 (0)