From 51a823ae2c4f0c07f780d9ba4719a1f8efcb6c07 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Wed, 6 Nov 2024 18:14:26 -0500 Subject: [PATCH] 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 --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 419597eebf6..ea14d8dcbfc 100644 --- a/tox.ini +++ b/tox.ini @@ -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]