Skip to content

Commit 331a66c

Browse files
committed
Drop mypy coverage
1 parent 5f64e68 commit 331a66c

File tree

3 files changed

+1
-22
lines changed

3 files changed

+1
-22
lines changed

.codecov.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
codecov:
44
notify:
5-
after_n_builds: 2 # The number of test matrix+lint jobs uploading coverage
5+
after_n_builds: 1 # The only test-summary job uploads the coverage
66
wait_for_ci: false
77

88
require_ci_to_pass: false
@@ -21,9 +21,6 @@ coverage:
2121
target: 100%
2222
flags:
2323
- pytest
24-
typing:
25-
flags:
26-
- MyPy
2724
project:
2825
lib:
2926
flags:
@@ -37,10 +34,6 @@ coverage:
3734
paths:
3835
- tests/
3936
target: 100%
40-
typing:
41-
flags:
42-
- MyPy
43-
target: 80%
4437

4538
github_checks:
4639
annotations: false

.github/workflows/reusable-linters.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,6 @@ jobs:
6060
- name: Run linters
6161
run: |
6262
make lint
63-
- name: Send coverage data to Codecov
64-
uses: codecov/codecov-action@v5
65-
with:
66-
token: ${{ secrets.codecov-token }}
67-
files: >-
68-
.tox/.tmp/.mypy/python-3.13/cobertura.xml,
69-
.tox/.tmp/.mypy/python-3.11/cobertura.xml,
70-
.tox/.tmp/.mypy/python-3.9/cobertura.xml
71-
flags: >-
72-
CI-GHA,
73-
MyPy
74-
fail_ci_if_error: true
7563
- name: Install spell checker
7664
run: |
7765
sudo apt install libenchant-2-dev

.pre-commit-config.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ repos:
125125
args:
126126
- --python-version=3.13
127127
- --txt-report=.tox/.tmp/.mypy/python-3.13
128-
- --cobertura-xml-report=.tox/.tmp/.mypy/python-3.13
129128
- --html-report=.tox/.tmp/.mypy/python-3.13
130129
pass_filenames: false
131130
- id: mypy
@@ -141,7 +140,6 @@ repos:
141140
args:
142141
- --python-version=3.11
143142
- --txt-report=.tox/.tmp/.mypy/python-3.11
144-
- --cobertura-xml-report=.tox/.tmp/.mypy/python-3.11
145143
- --html-report=.tox/.tmp/.mypy/python-3.11
146144
pass_filenames: false
147145

0 commit comments

Comments
 (0)