Fix dependencies for mypy tox target

Ia70f471c0f66679c44c4d3684c9e46c00993f3b3 incorrectly removed mypy
dependency from the target, which broke `tox -e mypy`. This change
makes sure the target uses all dependencies from pep8 target (which also
now includes the mypy dependency).

Change-Id: I3ccef4183fd3020e51af195fab5d3949b7611151
This commit is contained in:
Ihar Hrachyshka 2024-11-06 18:14:26 -05:00
parent 415bb3d2fa
commit 51a823ae2c

View File

@ -122,8 +122,7 @@ commands =
stestr run --slowest --combine --concurrency 1 neutron.tests.fullstack.test_securitygroup.TestSecurityGroupsSameNetwork.test_securitygroup {posargs}
[testenv:mypy]
deps =
{[testenv]deps}
deps = {[testenv:pep8]deps}
commands = mypy --config-file ./mypy.ini neutron
[testenv:releasenotes]