You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/usages/markers.rst
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,6 +152,23 @@ Another way to override ``supported_targets`` and ``preview_targets`` is by usin
152
152
- - esp32s3
153
153
- psram
154
154
155
+
SOC Related Targets
156
+
-------------------
157
+
158
+
If you need to retrieve targets filtered by a specific SOC attribute, you can use the ``soc_filtered_targets`` function.
159
+
160
+
This function processes both ``supported`` and ``preview`` targets, applies the specified filter, and returns a list of targets that match the given SOC attribute.
161
+
162
+
**Example:**
163
+
164
+
.. code:: python
165
+
166
+
from pytest_embedded_idf.utils import soc_filtered_targets
0 commit comments