mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
ci: apply idf-ci pytest plugin
Removed - target markers. Now must use target as parametrization in esp-idf - host test markers. Now will be automatically added with linux target and qemu marker
This commit is contained in:
+91
-1
@@ -7,7 +7,6 @@ python_files = pytest_*.py
|
||||
addopts =
|
||||
-s -vv
|
||||
--embedded-services esp,idf
|
||||
-p no:idf-ci
|
||||
--tb short
|
||||
--strict-markers
|
||||
--skip-check-coredump y
|
||||
@@ -36,3 +35,94 @@ junit_family = xunit1
|
||||
## log all to `system-out` when case fail
|
||||
junit_logging = stdout
|
||||
junit_log_passing_tests = False
|
||||
|
||||
markers =
|
||||
temp_skip_ci: mark test to be skipped in CI
|
||||
temp_skip: mark test to be skipped in CI and locally
|
||||
require_elf: mark test to be skipped if no elf file is found
|
||||
|
||||
env_markers =
|
||||
qemu: build and test using qemu, not real target
|
||||
macos: tests should be run on macos hosts
|
||||
generic: tests should be run on generic runners
|
||||
flash_suspend: support flash suspend feature
|
||||
eth_ip101: connected via IP101 ethernet transceiver
|
||||
eth_lan8720: connected via LAN8720 ethernet transceiver
|
||||
eth_rtl8201: connected via RTL8201 ethernet transceiver
|
||||
eth_ksz8041: connected via KSZ8041 ethernet transceiver
|
||||
eth_dp83848: connected via DP83848 ethernet transceiver
|
||||
eth_w5500: SPI Ethernet module with two W5500
|
||||
eth_ksz8851snl: SPI Ethernet module with two KSZ8851SNL
|
||||
eth_dm9051: SPI Ethernet module with two DM9051
|
||||
quad_psram: runners with quad psram
|
||||
octal_psram: runners with octal psram
|
||||
usb_host_flash_disk: usb host runners with USB flash disk attached
|
||||
usb_device: usb device runners
|
||||
ethernet_ota: ethernet OTA runners
|
||||
flash_encryption: Flash Encryption runners
|
||||
flash_encryption_f4r8: Flash Encryption runners with 4-line flash and 8-line psram
|
||||
flash_encryption_f8r8: Flash Encryption runners with 8-line flash and 8-line psram
|
||||
flash_encryption_ota: Flash Encryption runners with ethernet OTA support with 4mb flash size
|
||||
flash_multi: Multiple flash chips tests
|
||||
psram: Chip has 4-line psram
|
||||
ir_transceiver: runners with a pair of IR transmitter and receiver
|
||||
twai_transceiver: runners with a TWAI PHY transceiver
|
||||
flash_encryption_wifi_high_traffic: Flash Encryption runners with wifi high traffic support
|
||||
ethernet: ethernet runner
|
||||
ethernet_stress: ethernet runner with stress test
|
||||
ethernet_flash_8m: ethernet runner with 8mb flash
|
||||
ethernet_router: both the runner and dut connect to the same router through ethernet NIC
|
||||
ethernet_vlan: ethernet runner GARM-32-SH-1-R16S5N3
|
||||
wifi_ap: a wifi AP in the environment
|
||||
wifi_router: both the runner and dut connect to the same wifi router
|
||||
wifi_high_traffic: wifi high traffic runners
|
||||
wifi_wlan: wifi runner with a wireless NIC
|
||||
wifi_iperf: the AP and ESP dut were placed in a shielded box - for iperf test
|
||||
Example_ShieldBox: multiple shielded APs connected to shielded ESP DUT via RF cable with programmable attenuator
|
||||
xtal_26mhz: runner with 26MHz xtal on board
|
||||
xtal_40mhz: runner with 40MHz xtal on board
|
||||
external_flash: external flash memory connected via VSPI (FSPI)
|
||||
sdcard_sdmode: sdcard running in SD mode, to be removed after test migration
|
||||
sdcard_spimode: sdcard running in SPI mode
|
||||
emmc: eMMC card
|
||||
sdcard: sdcard runner
|
||||
MSPI_F8R8: runner with Octal Flash and Octal PSRAM
|
||||
MSPI_F4R8: runner with Quad Flash and Octal PSRAM
|
||||
MSPI_F4R4: runner with Quad Flash and Quad PSRAM
|
||||
flash_120m: runner with 120M supported Flash
|
||||
jtag: runner where the chip is accessible through JTAG as well
|
||||
usb_serial_jtag: runner where the chip is accessible through builtin JTAG as well
|
||||
adc: ADC related tests should run on adc runners
|
||||
xtal32k: Runner with external 32k crystal connected
|
||||
no32kXtal: Runner with no external 32k crystal connected
|
||||
psramv0: Runner with PSRAM version 0
|
||||
esp32eco3: Runner with esp32 eco3 connected
|
||||
ecdsa_efuse: Runner with test ECDSA private keys programmed in efuse
|
||||
ccs811: Runner with CCS811 connected
|
||||
nvs_encr_hmac: Runner with test HMAC key programmed in efuse
|
||||
i2c_oled: Runner with ssd1306 I2C oled connected
|
||||
httpbin: runner for tests that need to access the httpbin service
|
||||
flash_4mb: C2 runners with 4 MB flash
|
||||
jtag_re_enable: Runner to re-enable jtag which is softly disabled by burning bit SOFT_DIS_JTAG on eFuse
|
||||
es8311: Development board that carries es8311 codec
|
||||
camera: Runner with camera
|
||||
ov5647: Runner with camera ov5647
|
||||
multi_dut_modbus_rs485: a pair of runners connected by RS485 bus
|
||||
ieee802154: ieee802154 related tests should run on ieee802154 runners.
|
||||
openthread_br: tests should be used for openthread border router.
|
||||
openthread_bbr: tests should be used for openthread border router linked to Internet.
|
||||
openthread_sleep: tests should be used for openthread sleepy device.
|
||||
zigbee_multi_dut: zigbee runner which have multiple duts.
|
||||
wifi_two_dut: tests should be run on runners which has two wifi duts connected.
|
||||
generic_multi_device: generic multiple devices whose corresponding gpio pins are connected to each other.
|
||||
twai_network: multiple runners form a TWAI network.
|
||||
sdio_master_slave: Test sdio multi board, esp32+esp32
|
||||
sdio_multidev_32_c6: Test sdio multi board, esp32+esp32c6
|
||||
sdio_multidev_p4_c5: Test sdio multi board, esp32p4+esp32c5
|
||||
usj_device: Test usb_serial_jtag and usb_serial_jtag is used as serial only (not console)
|
||||
twai_std: twai runner with all twai supported targets connect to usb-can adapter
|
||||
lp_i2s: lp_i2s runner tested with hp_i2s
|
||||
ram_app: ram_app runners
|
||||
esp32c3eco7: esp32c3 major version(v1.1) chips
|
||||
esp32c2eco4: esp32c2 major version(v2.0) chips
|
||||
recovery_bootloader: Runner with recovery bootloader offset set in eFuse
|
||||
|
||||
Reference in New Issue
Block a user