Convert project fully to UV

This commit is contained in:
Lorow
2025-10-21 22:43:58 +02:00
parent dc61a5feb1
commit 55d94563e8
4 changed files with 102 additions and 2 deletions

View File

@@ -11,6 +11,6 @@ from pytest_embedded_idf.dut import IdfDut
@pytest.mark.generic
def test_blink(dut: IdfDut) -> None:
# check and log bin size
binary_file = os.path.join(dut.app.binary_path, 'blink.bin')
binary_file = os.path.join(dut.app.binary_path, "blink.bin")
bin_size = os.path.getsize(binary_file)
logging.info('blink_bin_size : {}KB'.format(bin_size // 1024))
logging.info("blink_bin_size : {}KB".format(bin_size // 1024))