Skip to content

Commit 5ba1e03

Browse files
committed
fix: remove unused options from pytest
coverage is removed altogether as it's not working
1 parent 985fc42 commit 5ba1e03

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

.coveragerc

Lines changed: 0 additions & 7 deletions
This file was deleted.

pyproject.toml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ requires-python = ">=3.7"
3636

3737
[project.optional-dependencies]
3838
test = [
39-
"coverage>=4.2",
4039
"importlib_metadata>=2.0",
41-
"pytest-cov>=3",
4240
"pytest>=6.0",
4341
]
4442

@@ -129,10 +127,10 @@ test-command = "pip check"
129127

130128
[tool.pytest.ini_options]
131129
minversion = "6.0"
132-
addopts = ["-ra", "--strict-markers", "--strict-config"]
130+
addopts = ["-ra", "--strict-markers", "--strict-config", "-v"]
133131
xfail_strict = true
134132
filterwarnings = ["error"]
135-
log_cli_level = "info"
133+
log_cli_level = "INFO"
136134
testpaths = [ "tests" ]
137135

138136

@@ -178,7 +176,3 @@ flake8-unused-arguments.ignore-variadic-names = true
178176

179177
[tool.ruff.lint.per-file-ignores]
180178
"*.pyi" = ["ARG001"]
181-
182-
[tool.pytest.ini_config]
183-
testpaths = ["tests"]
184-
addopts = ["-v", "--cov", "--cov-report", "xml"]

0 commit comments

Comments
 (0)