From a01cd19dafdf540faf11ba457f185879434e02ad Mon Sep 17 00:00:00 2001 From: Adam King Date: Fri, 9 Dec 2022 11:10:36 -0500 Subject: [PATCH] mgr/pybind: fix mypy arg parsing On the new tox version it is treating each line as a new command so it will do something like "mypy --config-file=../../mypy.ini" as one command and then "-m balancer" as a totally separate command. The first one immediately fails as it doesn't include any modules to test. Adding backslashes to the ends of the lines gets it to handle the lines as one long command Signed-off-by: Adam King (cherry picked from commit 8e5840ff2c5815897e3eaeb136927971ad6f5384) --- src/pybind/mgr/requirements-required.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/requirements-required.txt b/src/pybind/mgr/requirements-required.txt index a750b053791..1c4bbf4710b 100644 --- a/src/pybind/mgr/requirements-required.txt +++ b/src/pybind/mgr/requirements-required.txt @@ -1,4 +1,4 @@ --e../../python-common +-e ../../python-common asyncmock cherrypy cryptography -- 2.47.3