Pin the types-PyYAML version to 6.0.7. Version 6.0.8 is causing CI errors for other pull requests, so we need this in to get other PRs moving. Fixes: #46286 Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
19 lines
304 B
INI
19 lines
304 B
INI
[tox]
|
|
envlist=py3
|
|
|
|
[testenv]
|
|
deps =
|
|
setuptools-scm
|
|
pytest
|
|
types-PyYAML==6.0.7
|
|
mypy
|
|
setenv =
|
|
TOXTEMPDIR={envtmpdir}
|
|
commands =
|
|
python -m pytest {posargs:tests}
|
|
python -m mypy --config-file={toxinidir}/tox.ini --package=devicetree
|
|
|
|
[mypy]
|
|
mypy_path=src
|
|
ignore_missing_imports=True
|
|
|