Skip to content

Commit 3d0b491

Browse files
author
Emmanuel Rondan
committed
restoring typing env for tox
1 parent 7901b46 commit 3d0b491

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

tox.ini

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
[tox]
2-
envlist = pylint,docs,twinecheck,py38,py39,py310,py311,py312,pypy3.9,pypy3.10
2+
envlist = typing,pylint,docs,twinecheck,pre-commit,py38,py39,py310,py311,py312,pypy3.9,pypy3.10
33

44
[testenv]
55
usedevelop = True
66
deps =
77
-r{toxinidir}/tests/requirements.txt
88
commands = py.test --cov=parsel --cov-report=xml {posargs:docs parsel tests}
99

10+
[testenv:typing]
11+
deps =
12+
{[testenv]deps}
13+
types-jmespath==1.0.2.6
14+
types-lxml==2022.11.8
15+
types-psutil==5.9.5.6
16+
types-setuptools==67.2.0.1
17+
py==1.11.0
18+
mypy==1.0.0
19+
commands =
20+
mypy {posargs:parsel tests} --strict
21+
1022
[testenv:pylint]
1123
deps =
1224
{[testenv]deps}

0 commit comments

Comments
 (0)