Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jul 27, 2023
1 parent 3268b51 commit a983075
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.*",
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/test_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit a983075

Please sign in to comment.