Skip to content

Commit 87d78c3

Browse files
pyproject,tox: remove useless devel deps (#21)
htmlcov is not needed anymore, coverage is done through pytest and codecov.
2 parents 1c82686 + ccf03b6 commit 87d78c3

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

pyproject.toml

-4
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,11 @@ dts2src = 'dts_utils.builder:main'
4848

4949
[project.optional-dependencies]
5050
devel = [
51-
"coverage>=0.4",
5251
"flake8>=7.0,<8.0",
53-
"flake8-html>=0.4.3",
5452
"mypy>=1.8.0",
5553
"pytest>=4.6",
5654
"pytest-cov>=5.0.0",
5755
"black>=24.2,<25.0",
58-
"cachetools>=5.3",
59-
"lxml>=4.8.0",
6056
"pydoclint",
6157
"flake8-docstrings",
6258
]

tox.ini

+2-10
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ min_version = 4.0
77
env_list =
88
lint
99
unittests
10-
htmlcov
1110
docs
1211
isolated_build = true
1312

@@ -23,18 +22,11 @@ commands =
2322
coverage report -m
2423
coverage xml
2524

26-
[testenv:htmlcov]
27-
commands =
28-
coverage run --parallel-mode -m pytest {posargs}
29-
coverage combine
30-
coverage report
31-
coverage html --directory=reports/testcov
32-
3325
[testenv:lint]
3426
commands =
3527
black --line-length 100 --check --diff .
36-
mypy -p dts_utils --html-report reports/mypycov
37-
flake8 --format=html --htmldir=reports/flakereport --docstring-convention=numpy
28+
mypy -p dts_utils
29+
flake8 --docstring-convention=numpy
3830

3931
[testenv:docs]
4032
extras = doc

0 commit comments

Comments
 (0)