Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
paths:
- "**.py"
- "*/pyproject.toml"
- .github/workflows/test-python.yml
- "!docs/**"
push:
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ version_files = [
[tool.pytest.ini_options]
norecursedirs = 'examples/*'
addopts = "-s"
filterwarnings = [
"ignore::FutureWarning",
]
junit_family = "xunit1"
2 changes: 1 addition & 1 deletion pytest-embedded-idf/tests/test_idf.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def test_idf_serial_flash_with_erase_nvs(testdir):
import pytest

def test_idf_serial_flash_with_erase_nvs(dut):
dut.expect('Erasing region') # from "erase-nvs"
dut.expect('region') # from "erase-nvs"
dut.expect('Hash of data verified.') # from flash
dut.expect('Hello world!')
dut.expect('Restarting')
Expand Down
3 changes: 2 additions & 1 deletion pytest-embedded-serial-esp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ requires-python = ">=3.7"

dependencies = [
"pytest-embedded-serial~=1.16.1",
"esptool~=4.9",
"esptool>=4.9,<5; python_version<'3.10'",
"esptool>=5.1.dev1,<6; python_version>='3.10'",
]

[project.urls]
Expand Down
Loading