pytest-embedded-idf 2.1.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-embedded-idf
3
- Version: 2.1.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.1.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.1.2 ; extra == "serial"
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.1.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.1.2",
38
+ "pytest-embedded-serial-esp~=2.2.1",
39
39
  "esp-coredump~=1.0",
40
40
  ]
41
41
 
@@ -33,4 +33,4 @@ __all__ = [
33
33
  'UnittestMenuCase',
34
34
  ]
35
35
 
36
- __version__ = '2.1.2'
36
+ __version__ = '2.2.1'
@@ -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=4, errors=0) # FIXME, dut-factory mode can't raise error now
104
+ result.assert_outcomes(passed=3, failed=1)
105
105
 
106
106
  junit_report = ET.parse('report.xml').getroot()[0]
107
107