├── .editorconfig ├── .flake8 ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── publish_pypi.yml │ ├── sync-jira.yml │ ├── test-build-docs.yml │ ├── test-build-package.yml │ └── test-python.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── all_local_packages.txt ├── conftest.py ├── docs ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Makefile ├── _static │ ├── espressif-logo.svg │ └── theme_overrides.css ├── _templates │ └── layout.html ├── apis │ ├── pytest-embedded-arduino.rst │ ├── pytest-embedded-idf.rst │ ├── pytest-embedded-jtag.rst │ ├── pytest-embedded-nuttx.rst │ ├── pytest-embedded-qemu.rst │ ├── pytest-embedded-serial-esp.rst │ ├── pytest-embedded-serial.rst │ ├── pytest-embedded-wokwi.rst │ └── pytest-embedded.rst ├── concepts │ ├── key-concepts.rst │ └── services.md ├── conf.py ├── index.rst ├── requirements.txt └── usages │ ├── expecting.rst │ ├── help_functions.rst │ └── markers.rst ├── examples ├── .gitignore ├── arduino │ ├── README.md │ ├── hello_world │ │ ├── hello_world.ino │ │ └── test_hello_world.py │ └── pytest.ini ├── echo │ ├── README.md │ ├── conftest.py │ ├── pytest.ini │ └── test_echo.py ├── esp-idf-qemu │ ├── README.md │ ├── hello_world │ │ ├── CMakeLists.txt │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── hello_world_main.c │ │ └── test_hello_world.py │ └── pytest.ini ├── esp-idf │ ├── README.md │ ├── hello_world │ │ ├── CMakeLists.txt │ │ ├── main │ │ │ ├── CMakeLists.txt │ │ │ └── hello_world_main.c │ │ └── test_hello_world.py │ └── pytest.ini └── nuttx-esp │ ├── README.md │ ├── pytest.ini │ └── test_nuttx_esp.py ├── foreach.sh ├── pyproject.toml ├── pytest-embedded-arduino ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest_embedded_arduino │ ├── __init__.py │ ├── app.py │ └── serial.py └── tests │ └── test_arduino.py ├── pytest-embedded-idf ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest_embedded_idf │ ├── __init__.py │ ├── app.py │ ├── dut.py │ ├── linux.py │ ├── serial.py │ ├── unity_tester.py │ └── utils.py └── tests │ └── test_idf.py ├── pytest-embedded-jtag ├── LICENSE ├── README.md ├── __init__.py ├── pyproject.toml ├── pytest_embedded_jtag │ ├── __init__.py │ ├── _telnetlib │ │ ├── LICENSE │ │ ├── __init__.py │ │ └── telnetlib.py │ ├── gdb.py │ └── openocd.py └── tests │ └── test_jtag.py ├── pytest-embedded-nuttx ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest_embedded_nuttx │ ├── __init__.py │ ├── app.py │ ├── dut.py │ ├── qemu.py │ └── serial.py └── tests │ └── test_nuttx.py ├── pytest-embedded-qemu ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest_embedded_qemu │ ├── __init__.py │ ├── app.py │ ├── dut.py │ └── qemu.py └── tests │ └── test_qemu.py ├── pytest-embedded-serial-esp ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest_embedded_serial_esp │ ├── __init__.py │ └── serial.py └── tests │ └── test_esp.py ├── pytest-embedded-serial ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest_embedded_serial │ ├── __init__.py │ ├── dut.py │ └── serial.py └── tests │ └── test_serial.py ├── pytest-embedded-wokwi ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest_embedded_wokwi │ ├── __init__.py │ ├── arduino.py │ ├── dut.py │ ├── idf.py │ └── wokwi.py └── tests │ └── test_wokwi.py ├── pytest-embedded ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest_embedded │ ├── __init__.py │ ├── app.py │ ├── dut.py │ ├── dut_factory.py │ ├── log.py │ ├── plugin.py │ ├── unity.py │ └── utils.py └── tests │ └── test_base.py ├── requirements.txt ├── ruff.toml └── tests ├── esp-idf ├── components │ └── soc │ │ ├── esp32 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32c2 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32c3 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32c5 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32c6 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32c61 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32h2 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32h21 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32p4 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ ├── esp32s2 │ │ └── include │ │ │ └── soc │ │ │ └── soc_caps.h │ │ └── esp32s3 │ │ └── include │ │ └── soc │ │ └── soc_caps.h └── tools │ ├── cmake │ └── version.cmake │ └── idf_py_actions │ └── constants.py └── fixtures ├── esp32_qemu.bin ├── gdb_panic_server.py ├── gen_esp32part.py ├── hello_world_arduino ├── build │ ├── build.options.json │ ├── hello_world_arduino.ino.bin │ ├── hello_world_arduino.ino.bootloader.bin │ ├── hello_world_arduino.ino.elf │ ├── hello_world_arduino.ino.merged.bin │ └── hello_world_arduino.ino.partitions.bin └── esp32.diagram.json ├── hello_world_esp32 ├── build │ ├── bootloader │ │ └── bootloader.bin │ ├── config │ │ └── sdkconfig.json │ ├── flasher_args.json │ ├── hello_world.bin │ ├── hello_world.elf │ └── partition_table │ │ └── partition-table.bin └── gdbinit ├── hello_world_esp32_flash_enc ├── build │ ├── bootloader │ │ └── bootloader.bin │ ├── config │ │ └── sdkconfig.json │ ├── flasher_args.json │ ├── hello_world.bin │ └── partition_table │ │ └── partition-table.bin ├── pre_encryption_efuses.bin └── pre_encryption_key.bin ├── hello_world_esp32c3 └── build │ ├── bootloader │ └── bootloader.bin │ ├── config │ └── sdkconfig.json │ ├── flasher_args.json │ ├── hello_world.bin │ ├── hello_world.elf │ └── partition_table │ └── partition-table.bin ├── hello_world_esp32c3_panic ├── build │ ├── bootloader │ │ └── bootloader.bin │ ├── config │ │ └── sdkconfig.json │ ├── flasher_args.json │ ├── hello_world.bin │ ├── hello_world.elf │ ├── hello_world.map │ ├── partition_table │ │ └── partition-table.bin │ └── prefix_map_gdbinit └── main │ └── hello_world_main.c ├── hello_world_linux └── build │ ├── config │ └── sdkconfig.json │ ├── hello_world.elf │ └── project_description.json ├── hello_world_nuttx └── nuttx.bin ├── hello_world_nuttx_mcuboot ├── mcuboot-esp32.bin └── nuttx.bin ├── hello_world_nuttx_qemu ├── nuttx.merged.bin └── qemu_efuse.bin ├── hello_world_nuttx_virtual_efuse ├── mcuboot-esp32.bin ├── nuttx.bin └── vefuse.bin ├── unit_test_app_esp32 ├── CMakeLists.txt ├── build │ ├── bootloader │ │ └── bootloader.bin │ ├── case_tester_example.bin │ ├── config │ │ └── sdkconfig.json │ ├── flasher_args.json │ └── partition_table │ │ └── partition-table.bin └── main │ ├── CMakeLists.txt │ ├── case_tester_example.c │ └── test_app_main.c ├── unit_test_app_esp32c3 ├── CMakeLists.txt ├── build │ ├── bootloader │ │ └── bootloader.bin │ ├── case_tester_example.bin │ ├── config │ │ └── sdkconfig.json │ ├── flasher_args.json │ └── partition_table │ │ └── partition-table.bin └── main │ ├── CMakeLists.txt │ ├── case_tester_example.c │ └── test_app_main.c └── unit_test_app_linux └── build ├── config └── sdkconfig.json ├── project_description.json └── test_esp_event.elf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | extend-ignore = E203 4 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/workflows/publish_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/sync-jira.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/workflows/sync-jira.yml -------------------------------------------------------------------------------- /.github/workflows/test-build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/workflows/test-build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/test-build-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/workflows/test-build-package.yml -------------------------------------------------------------------------------- /.github/workflows/test-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.github/workflows/test-python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/README.md -------------------------------------------------------------------------------- /all_local_packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/all_local_packages.txt -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CHANGELOG.md 2 | ``` 3 | -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CONTRIBUTING.md 2 | ``` 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/espressif-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/_static/espressif-logo.svg -------------------------------------------------------------------------------- /docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/apis/pytest-embedded-arduino.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded-arduino.rst -------------------------------------------------------------------------------- /docs/apis/pytest-embedded-idf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded-idf.rst -------------------------------------------------------------------------------- /docs/apis/pytest-embedded-jtag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded-jtag.rst -------------------------------------------------------------------------------- /docs/apis/pytest-embedded-nuttx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded-nuttx.rst -------------------------------------------------------------------------------- /docs/apis/pytest-embedded-qemu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded-qemu.rst -------------------------------------------------------------------------------- /docs/apis/pytest-embedded-serial-esp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded-serial-esp.rst -------------------------------------------------------------------------------- /docs/apis/pytest-embedded-serial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded-serial.rst -------------------------------------------------------------------------------- /docs/apis/pytest-embedded-wokwi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded-wokwi.rst -------------------------------------------------------------------------------- /docs/apis/pytest-embedded.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/apis/pytest-embedded.rst -------------------------------------------------------------------------------- /docs/concepts/key-concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/concepts/key-concepts.rst -------------------------------------------------------------------------------- /docs/concepts/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/concepts/services.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usages/expecting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/usages/expecting.rst -------------------------------------------------------------------------------- /docs/usages/help_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/usages/help_functions.rst -------------------------------------------------------------------------------- /docs/usages/markers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/docs/usages/markers.rst -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/arduino/README.md -------------------------------------------------------------------------------- /examples/arduino/hello_world/hello_world.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/arduino/hello_world/hello_world.ino -------------------------------------------------------------------------------- /examples/arduino/hello_world/test_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/arduino/hello_world/test_hello_world.py -------------------------------------------------------------------------------- /examples/arduino/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/arduino/pytest.ini -------------------------------------------------------------------------------- /examples/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/echo/README.md -------------------------------------------------------------------------------- /examples/echo/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/echo/conftest.py -------------------------------------------------------------------------------- /examples/echo/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/echo/pytest.ini -------------------------------------------------------------------------------- /examples/echo/test_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/echo/test_echo.py -------------------------------------------------------------------------------- /examples/esp-idf-qemu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf-qemu/README.md -------------------------------------------------------------------------------- /examples/esp-idf-qemu/hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf-qemu/hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-idf-qemu/hello_world/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf-qemu/hello_world/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-idf-qemu/hello_world/main/hello_world_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf-qemu/hello_world/main/hello_world_main.c -------------------------------------------------------------------------------- /examples/esp-idf-qemu/hello_world/test_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf-qemu/hello_world/test_hello_world.py -------------------------------------------------------------------------------- /examples/esp-idf-qemu/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf-qemu/pytest.ini -------------------------------------------------------------------------------- /examples/esp-idf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf/README.md -------------------------------------------------------------------------------- /examples/esp-idf/hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf/hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-idf/hello_world/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf/hello_world/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esp-idf/hello_world/main/hello_world_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf/hello_world/main/hello_world_main.c -------------------------------------------------------------------------------- /examples/esp-idf/hello_world/test_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf/hello_world/test_hello_world.py -------------------------------------------------------------------------------- /examples/esp-idf/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/esp-idf/pytest.ini -------------------------------------------------------------------------------- /examples/nuttx-esp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/nuttx-esp/README.md -------------------------------------------------------------------------------- /examples/nuttx-esp/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/nuttx-esp/pytest.ini -------------------------------------------------------------------------------- /examples/nuttx-esp/test_nuttx_esp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/examples/nuttx-esp/test_nuttx_esp.py -------------------------------------------------------------------------------- /foreach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/foreach.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-arduino/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-arduino/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-arduino/README.md -------------------------------------------------------------------------------- /pytest-embedded-arduino/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-arduino/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-arduino/pytest_embedded_arduino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-arduino/pytest_embedded_arduino/__init__.py -------------------------------------------------------------------------------- /pytest-embedded-arduino/pytest_embedded_arduino/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-arduino/pytest_embedded_arduino/app.py -------------------------------------------------------------------------------- /pytest-embedded-arduino/pytest_embedded_arduino/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-arduino/pytest_embedded_arduino/serial.py -------------------------------------------------------------------------------- /pytest-embedded-arduino/tests/test_arduino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-arduino/tests/test_arduino.py -------------------------------------------------------------------------------- /pytest-embedded-idf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-idf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/README.md -------------------------------------------------------------------------------- /pytest-embedded-idf/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-idf/pytest_embedded_idf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/pytest_embedded_idf/__init__.py -------------------------------------------------------------------------------- /pytest-embedded-idf/pytest_embedded_idf/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/pytest_embedded_idf/app.py -------------------------------------------------------------------------------- /pytest-embedded-idf/pytest_embedded_idf/dut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/pytest_embedded_idf/dut.py -------------------------------------------------------------------------------- /pytest-embedded-idf/pytest_embedded_idf/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/pytest_embedded_idf/linux.py -------------------------------------------------------------------------------- /pytest-embedded-idf/pytest_embedded_idf/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/pytest_embedded_idf/serial.py -------------------------------------------------------------------------------- /pytest-embedded-idf/pytest_embedded_idf/unity_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/pytest_embedded_idf/unity_tester.py -------------------------------------------------------------------------------- /pytest-embedded-idf/pytest_embedded_idf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/pytest_embedded_idf/utils.py -------------------------------------------------------------------------------- /pytest-embedded-idf/tests/test_idf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-idf/tests/test_idf.py -------------------------------------------------------------------------------- /pytest-embedded-jtag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-jtag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/README.md -------------------------------------------------------------------------------- /pytest-embedded-jtag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest-embedded-jtag/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-jtag/pytest_embedded_jtag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/pytest_embedded_jtag/__init__.py -------------------------------------------------------------------------------- /pytest-embedded-jtag/pytest_embedded_jtag/_telnetlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/pytest_embedded_jtag/_telnetlib/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-jtag/pytest_embedded_jtag/_telnetlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest-embedded-jtag/pytest_embedded_jtag/_telnetlib/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/pytest_embedded_jtag/_telnetlib/telnetlib.py -------------------------------------------------------------------------------- /pytest-embedded-jtag/pytest_embedded_jtag/gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/pytest_embedded_jtag/gdb.py -------------------------------------------------------------------------------- /pytest-embedded-jtag/pytest_embedded_jtag/openocd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/pytest_embedded_jtag/openocd.py -------------------------------------------------------------------------------- /pytest-embedded-jtag/tests/test_jtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-jtag/tests/test_jtag.py -------------------------------------------------------------------------------- /pytest-embedded-nuttx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-nuttx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/README.md -------------------------------------------------------------------------------- /pytest-embedded-nuttx/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-nuttx/pytest_embedded_nuttx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/pytest_embedded_nuttx/__init__.py -------------------------------------------------------------------------------- /pytest-embedded-nuttx/pytest_embedded_nuttx/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/pytest_embedded_nuttx/app.py -------------------------------------------------------------------------------- /pytest-embedded-nuttx/pytest_embedded_nuttx/dut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/pytest_embedded_nuttx/dut.py -------------------------------------------------------------------------------- /pytest-embedded-nuttx/pytest_embedded_nuttx/qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/pytest_embedded_nuttx/qemu.py -------------------------------------------------------------------------------- /pytest-embedded-nuttx/pytest_embedded_nuttx/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/pytest_embedded_nuttx/serial.py -------------------------------------------------------------------------------- /pytest-embedded-nuttx/tests/test_nuttx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-nuttx/tests/test_nuttx.py -------------------------------------------------------------------------------- /pytest-embedded-qemu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-qemu/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-qemu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-qemu/README.md -------------------------------------------------------------------------------- /pytest-embedded-qemu/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-qemu/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-qemu/pytest_embedded_qemu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-qemu/pytest_embedded_qemu/__init__.py -------------------------------------------------------------------------------- /pytest-embedded-qemu/pytest_embedded_qemu/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-qemu/pytest_embedded_qemu/app.py -------------------------------------------------------------------------------- /pytest-embedded-qemu/pytest_embedded_qemu/dut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-qemu/pytest_embedded_qemu/dut.py -------------------------------------------------------------------------------- /pytest-embedded-qemu/pytest_embedded_qemu/qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-qemu/pytest_embedded_qemu/qemu.py -------------------------------------------------------------------------------- /pytest-embedded-qemu/tests/test_qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-qemu/tests/test_qemu.py -------------------------------------------------------------------------------- /pytest-embedded-serial-esp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial-esp/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-serial-esp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial-esp/README.md -------------------------------------------------------------------------------- /pytest-embedded-serial-esp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial-esp/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-serial-esp/pytest_embedded_serial_esp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial-esp/pytest_embedded_serial_esp/__init__.py -------------------------------------------------------------------------------- /pytest-embedded-serial-esp/pytest_embedded_serial_esp/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial-esp/pytest_embedded_serial_esp/serial.py -------------------------------------------------------------------------------- /pytest-embedded-serial-esp/tests/test_esp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial-esp/tests/test_esp.py -------------------------------------------------------------------------------- /pytest-embedded-serial/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-serial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial/README.md -------------------------------------------------------------------------------- /pytest-embedded-serial/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-serial/pytest_embedded_serial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial/pytest_embedded_serial/__init__.py -------------------------------------------------------------------------------- /pytest-embedded-serial/pytest_embedded_serial/dut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial/pytest_embedded_serial/dut.py -------------------------------------------------------------------------------- /pytest-embedded-serial/pytest_embedded_serial/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial/pytest_embedded_serial/serial.py -------------------------------------------------------------------------------- /pytest-embedded-serial/tests/test_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-serial/tests/test_serial.py -------------------------------------------------------------------------------- /pytest-embedded-wokwi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/LICENSE -------------------------------------------------------------------------------- /pytest-embedded-wokwi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/README.md -------------------------------------------------------------------------------- /pytest-embedded-wokwi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded-wokwi/pytest_embedded_wokwi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/pytest_embedded_wokwi/__init__.py -------------------------------------------------------------------------------- /pytest-embedded-wokwi/pytest_embedded_wokwi/arduino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/pytest_embedded_wokwi/arduino.py -------------------------------------------------------------------------------- /pytest-embedded-wokwi/pytest_embedded_wokwi/dut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/pytest_embedded_wokwi/dut.py -------------------------------------------------------------------------------- /pytest-embedded-wokwi/pytest_embedded_wokwi/idf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/pytest_embedded_wokwi/idf.py -------------------------------------------------------------------------------- /pytest-embedded-wokwi/pytest_embedded_wokwi/wokwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/pytest_embedded_wokwi/wokwi.py -------------------------------------------------------------------------------- /pytest-embedded-wokwi/tests/test_wokwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded-wokwi/tests/test_wokwi.py -------------------------------------------------------------------------------- /pytest-embedded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/LICENSE -------------------------------------------------------------------------------- /pytest-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/README.md -------------------------------------------------------------------------------- /pytest-embedded/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pyproject.toml -------------------------------------------------------------------------------- /pytest-embedded/pytest_embedded/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pytest_embedded/__init__.py -------------------------------------------------------------------------------- /pytest-embedded/pytest_embedded/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pytest_embedded/app.py -------------------------------------------------------------------------------- /pytest-embedded/pytest_embedded/dut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pytest_embedded/dut.py -------------------------------------------------------------------------------- /pytest-embedded/pytest_embedded/dut_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pytest_embedded/dut_factory.py -------------------------------------------------------------------------------- /pytest-embedded/pytest_embedded/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pytest_embedded/log.py -------------------------------------------------------------------------------- /pytest-embedded/pytest_embedded/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pytest_embedded/plugin.py -------------------------------------------------------------------------------- /pytest-embedded/pytest_embedded/unity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pytest_embedded/unity.py -------------------------------------------------------------------------------- /pytest-embedded/pytest_embedded/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/pytest_embedded/utils.py -------------------------------------------------------------------------------- /pytest-embedded/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/pytest-embedded/tests/test_base.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/requirements.txt -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/ruff.toml -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32c2/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32c2/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32c3/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32c3/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32c5/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32c5/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32c6/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32c6/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32c61/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32c61/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32h2/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32h2/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32h21/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32h21/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32p4/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32p4/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32s2/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32s2/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/components/soc/esp32s3/include/soc/soc_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/components/soc/esp32s3/include/soc/soc_caps.h -------------------------------------------------------------------------------- /tests/esp-idf/tools/cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/tools/cmake/version.cmake -------------------------------------------------------------------------------- /tests/esp-idf/tools/idf_py_actions/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/esp-idf/tools/idf_py_actions/constants.py -------------------------------------------------------------------------------- /tests/fixtures/esp32_qemu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/esp32_qemu.bin -------------------------------------------------------------------------------- /tests/fixtures/gdb_panic_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/gdb_panic_server.py -------------------------------------------------------------------------------- /tests/fixtures/gen_esp32part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/gen_esp32part.py -------------------------------------------------------------------------------- /tests/fixtures/hello_world_arduino/build/build.options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_arduino/build/build.options.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.bootloader.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.elf -------------------------------------------------------------------------------- /tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.merged.bin: -------------------------------------------------------------------------------- 1 | hello_world_arduino.ino.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.partitions.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_arduino/build/hello_world_arduino.ino.partitions.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_arduino/esp32.diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_arduino/esp32.diagram.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32/build/config/sdkconfig.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32/build/flasher_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32/build/flasher_args.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32/build/hello_world.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32/build/hello_world.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32/build/hello_world.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32/build/hello_world.elf -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32/build/partition_table/partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32/build/partition_table/partition-table.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32/gdbinit -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32_flash_enc/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32_flash_enc/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32_flash_enc/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32_flash_enc/build/config/sdkconfig.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32_flash_enc/build/flasher_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32_flash_enc/build/flasher_args.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32_flash_enc/build/hello_world.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32_flash_enc/build/hello_world.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32_flash_enc/build/partition_table/partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32_flash_enc/build/partition_table/partition-table.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32_flash_enc/pre_encryption_efuses.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32_flash_enc/pre_encryption_efuses.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32_flash_enc/pre_encryption_key.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32_flash_enc/pre_encryption_key.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3/build/config/sdkconfig.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3/build/flasher_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3/build/flasher_args.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3/build/hello_world.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3/build/hello_world.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3/build/hello_world.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3/build/hello_world.elf -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3/build/partition_table/partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3/build/partition_table/partition-table.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3_panic/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3_panic/build/config/sdkconfig.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/build/flasher_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3_panic/build/flasher_args.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/build/hello_world.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/build/hello_world.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.elf -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/build/hello_world.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.map -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/build/partition_table/partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3_panic/build/partition_table/partition-table.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/build/prefix_map_gdbinit: -------------------------------------------------------------------------------- 1 | set substitute-path /COMPONENT_MAIN_DIR ./hello_world_esp32c3_panic/main 2 | -------------------------------------------------------------------------------- /tests/fixtures/hello_world_esp32c3_panic/main/hello_world_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_esp32c3_panic/main/hello_world_main.c -------------------------------------------------------------------------------- /tests/fixtures/hello_world_linux/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_linux/build/config/sdkconfig.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_linux/build/hello_world.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_linux/build/hello_world.elf -------------------------------------------------------------------------------- /tests/fixtures/hello_world_linux/build/project_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_linux/build/project_description.json -------------------------------------------------------------------------------- /tests/fixtures/hello_world_nuttx/nuttx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_nuttx/nuttx.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_nuttx_mcuboot/mcuboot-esp32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_nuttx_mcuboot/mcuboot-esp32.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_nuttx_mcuboot/nuttx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_nuttx_mcuboot/nuttx.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_nuttx_qemu/nuttx.merged.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_nuttx_qemu/nuttx.merged.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_nuttx_qemu/qemu_efuse.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_nuttx_qemu/qemu_efuse.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_nuttx_virtual_efuse/mcuboot-esp32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_nuttx_virtual_efuse/mcuboot-esp32.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_nuttx_virtual_efuse/nuttx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/hello_world_nuttx_virtual_efuse/nuttx.bin -------------------------------------------------------------------------------- /tests/fixtures/hello_world_nuttx_virtual_efuse/vefuse.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/build/case_tester_example.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/build/case_tester_example.bin -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/build/config/sdkconfig.json -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/build/flasher_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/build/flasher_args.json -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/build/partition_table/partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/build/partition_table/partition-table.bin -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/main/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/main/case_tester_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/main/case_tester_example.c -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32/main/test_app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32/main/test_app_main.c -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/build/bootloader/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/build/bootloader/bootloader.bin -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/build/case_tester_example.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/build/case_tester_example.bin -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/build/config/sdkconfig.json -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/build/flasher_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/build/flasher_args.json -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/build/partition_table/partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/build/partition_table/partition-table.bin -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/main/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/main/case_tester_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/main/case_tester_example.c -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_esp32c3/main/test_app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_esp32c3/main/test_app_main.c -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_linux/build/config/sdkconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_linux/build/config/sdkconfig.json -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_linux/build/project_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_linux/build/project_description.json -------------------------------------------------------------------------------- /tests/fixtures/unit_test_app_linux/build/test_esp_event.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espressif/pytest-embedded/HEAD/tests/fixtures/unit_test_app_linux/build/test_esp_event.elf --------------------------------------------------------------------------------