Skip to content

Commit b6b6478

Browse files
committed
remove code cov
1 parent 00019bc commit b6b6478

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,6 @@ jobs:
5858
- name: Run tests
5959
run: poetry run pytest tests/ -v --cov=src/mdbub --cov-report=xml
6060

61-
- name: Upload coverage to Codecov
62-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
63-
uses: codecov/codecov-action@v3
64-
with:
65-
file: ./coverage.xml
66-
fail_ci_if_error: true
6761

6862
lint:
6963
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ known_first_party = ["mdbub"]
128128
ignore = ["E501"]
129129

130130
[tool.mypy]
131-
disable_error_code = ["no-untyped-call", "unused-ignore"]
131+
disable_error_code = ["no-untyped-call"]
132132
exclude = '^(tests/|src/mdbub/commands/|src/mdbub/cli.py)'
133133
ignore_missing_imports = true
134134

src/mdbub/commands/quickmode_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pathlib import Path
99
from typing import Any, Dict, List, Optional
1010

11-
import toml # type: ignore
11+
import toml
1212

1313
# Default UI constants
1414
QUICKMODE_DEFAULTS = {

tests/test_theme_color_dump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
import toml # type: ignore
3+
import toml
44

55
EXAMPLES_DIR = os.path.join(os.path.dirname(os.path.dirname(__file__)), "examples")
66

0 commit comments

Comments
 (0)