We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d630355 commit 187b201Copy full SHA for 187b201
pytest-embedded-arduino/tests/test_arduino.py
@@ -7,7 +7,11 @@ def test_arduino_serial_flash(testdir):
7
import pytest
8
9
def test_arduino_app(app, dut):
10
- assert app.binary_file == os.path.join(testdir.tmpdir, 'hello_world_arduino/build/hello_world_arduino.ino.merged.bin')
+ expected_bin = os.path.join(
11
+ testdir.tmpdir,
12
+ 'hello_world_arduino/build/hello_world_arduino.ino.merged.bin'
13
+ )
14
+ assert app.binary_file == expected_bin
15
assert app.target == 'esp32'
16
assert app.fqbn == 'espressif:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app'
17
dut.expect('Hello Arduino!')
0 commit comments