From a983075dacdce1994402091222391000c8128ae0 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 27 Jul 2023 15:04:09 +0300 Subject: [PATCH] Update deps --- setup.py | 4 ++-- tests/commands/test_check.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5b3aa1146b..6d450519c7 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ "click==8.1.*; " + py_gte_37, "colorama", "marshmallow==3.14.1; " + py_below_37, - "marshmallow==3.19.*; " + py_gte_37, + "marshmallow==3.20.*; " + py_gte_37, "pyelftools==0.29", "pyserial==3.5.*", # keep in sync "device/monitor/terminal.py" "requests==2.*", @@ -47,7 +47,7 @@ "ajsonrpc==1.2.*", "starlette==0.19.1; " + py_below_37, "starlette==0.29.0; " + py_37, - "starlette==0.30.*; " + py_gte_38, + "starlette==0.31.*; " + py_gte_38, "uvicorn==0.16.0; " + py_below_37, "uvicorn==0.22.0; " + py_37, "uvicorn==0.23.*; " + py_gte_38, diff --git a/tests/commands/test_check.py b/tests/commands/test_check.py index 91679d03e5..5403ee0fa7 100644 --- a/tests/commands/test_check.py +++ b/tests/commands/test_check.py @@ -511,6 +511,7 @@ def test_check_pvs_studio_fails_broken_license(clirunner, tmpdir): assert verbose_result.exit_code != 0 assert "license information is incorrect" in verbose_result.output.lower() + @pytest.mark.parametrize("framework", ["arduino", "stm32cube", "zephyr"]) @pytest.mark.parametrize("check_tool", ["cppcheck", "clangtidy", "pvs-studio"]) def test_check_embedded_platform_all_tools( @@ -539,7 +540,6 @@ def test_check_embedded_platform_all_tools( """ ) - tmpdir.join("platformio.ini").write(config) result = clirunner.invoke(cmd_check, ["--project-dir", str(tmpdir)]) validate_cliresult(result)