mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-16 23:39:51 +01:00
fix(ci): update HTTP client example tests runner assignment
HTTP client example tests now connect with locally hosted httpbin service for more stable results across multiple runs
This commit is contained in:
@@ -11,7 +11,7 @@ from pytest_embedded import Dut
|
||||
@pytest.mark.esp32c3
|
||||
@pytest.mark.esp32s2
|
||||
@pytest.mark.esp32s3
|
||||
@pytest.mark.ethernet
|
||||
@pytest.mark.httpbin
|
||||
def test_examples_protocol_esp_http_client(dut: Dut) -> None:
|
||||
"""
|
||||
steps: |
|
||||
@@ -57,7 +57,11 @@ def test_examples_protocol_esp_http_client(dut: Dut) -> None:
|
||||
dut.expect('Finish http example')
|
||||
|
||||
|
||||
@pytest.mark.parametrize('config', [pytest.param('ssldyn', marks=[pytest.mark.supported_targets, pytest.mark.ethernet]),], indirect=True)
|
||||
@pytest.mark.supported_targets
|
||||
@pytest.mark.httpbin
|
||||
@pytest.mark.parametrize('config', [
|
||||
'ssldyn',
|
||||
], indirect=True)
|
||||
def test_examples_protocol_esp_http_client_dynamic_buffer(dut: Dut) -> None:
|
||||
# test mbedtls dynamic resource
|
||||
# check and log bin size
|
||||
|
||||
Reference in New Issue
Block a user