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:
Harshit Malpani
2023-07-18 10:08:03 +05:30
parent 7d03999b2b
commit 7645723127
3 changed files with 11 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ from pytest_embedded import Dut
@pytest.mark.esp32
@pytest.mark.ethernet
@pytest.mark.httpbin
def test_examples_protocol_esp_http_client(dut: Dut) -> None:
"""
steps: |
@@ -55,7 +55,7 @@ def test_examples_protocol_esp_http_client(dut: Dut) -> None:
@pytest.mark.esp32
@pytest.mark.ethernet
@pytest.mark.httpbin
@pytest.mark.parametrize('config', [
'ssldyn',
], indirect=True)