import hashlib
import logging
from typing import Callable
import pytest
from pytest_embedded_idf.dut import IdfDut
EXPECT_TIMEOUT = 10
testdata = [2, 3, 4]
@pytest.mark.esp32s3
@pytest.mark.parametrize("x", testdata)
def test_hello_world(dut: IdfDut, x):
pass
This gives me the following errors
This is the error it gives
Kindly help with a solution of this problem. I run it on an esp32s3 device with UART usb connection.
My friend did not get any error while running the above code but i got the above error.
New contributor
Vedant is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.