pytest-embedded-idf 2.2.0__tar.gz → 2.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/PKG-INFO +3 -3
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/pyproject.toml +2 -2
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/pytest_embedded_idf/__init__.py +1 -1
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/tests/test_idf.py +1 -1
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/LICENSE +0 -0
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/README.md +0 -0
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/pytest_embedded_idf/app.py +0 -0
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/pytest_embedded_idf/dut.py +0 -0
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/pytest_embedded_idf/linux.py +0 -0
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/pytest_embedded_idf/serial.py +0 -0
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/pytest_embedded_idf/unity_tester.py +0 -0
- {pytest_embedded_idf-2.2.0 → pytest_embedded_idf-2.2.1}/pytest_embedded_idf/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytest-embedded-idf
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.1
|
|
4
4
|
Summary: Make pytest-embedded plugin work with ESP-IDF.
|
|
5
5
|
Author-email: Fu Hanxi <fuhanxi@espressif.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -19,10 +19,10 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Classifier: Programming Language :: Python
|
|
20
20
|
Classifier: Topic :: Software Development :: Testing
|
|
21
21
|
License-File: LICENSE
|
|
22
|
-
Requires-Dist: pytest-embedded~=2.2.
|
|
22
|
+
Requires-Dist: pytest-embedded~=2.2.1
|
|
23
23
|
Requires-Dist: esp-idf-panic-decoder
|
|
24
24
|
Requires-Dist: esp-bool-parser>=0.1.2,<1
|
|
25
|
-
Requires-Dist: pytest-embedded-serial-esp~=2.2.
|
|
25
|
+
Requires-Dist: pytest-embedded-serial-esp~=2.2.1 ; extra == "serial"
|
|
26
26
|
Requires-Dist: esp-coredump~=1.0 ; extra == "serial"
|
|
27
27
|
Project-URL: changelog, https://github.com/espressif/pytest-embedded/blob/main/CHANGELOG.md
|
|
28
28
|
Project-URL: documentation, https://docs.espressif.com/projects/pytest-embedded/en/latest/
|
|
@@ -28,14 +28,14 @@ dynamic = ["version", "description"]
|
|
|
28
28
|
requires-python = ">=3.10"
|
|
29
29
|
|
|
30
30
|
dependencies = [
|
|
31
|
-
"pytest-embedded~=2.2.
|
|
31
|
+
"pytest-embedded~=2.2.1",
|
|
32
32
|
"esp-idf-panic-decoder",
|
|
33
33
|
"esp-bool-parser>=0.1.2,<1"
|
|
34
34
|
]
|
|
35
35
|
|
|
36
36
|
[project.optional-dependencies]
|
|
37
37
|
serial = [
|
|
38
|
-
"pytest-embedded-serial-esp~=2.2.
|
|
38
|
+
"pytest-embedded-serial-esp~=2.2.1",
|
|
39
39
|
"esp-coredump~=1.0",
|
|
40
40
|
]
|
|
41
41
|
|
|
@@ -101,7 +101,7 @@ def test_custom_idf_device_dut(testdir):
|
|
|
101
101
|
'--junitxml',
|
|
102
102
|
'report.xml',
|
|
103
103
|
)
|
|
104
|
-
result.assert_outcomes(passed=
|
|
104
|
+
result.assert_outcomes(passed=3, failed=1)
|
|
105
105
|
|
|
106
106
|
junit_report = ET.parse('report.xml').getroot()[0]
|
|
107
107
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|