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 c7e7df3 commit 28dddb9Copy full SHA for 28dddb9
pytest-embedded-arduino/tests/test_arduino.py
@@ -2,15 +2,18 @@
2
3
4
def test_arduino_serial_flash(testdir):
5
- testdir.makepyfile("""
+ testdir.makepyfile(f"""
6
import pexpect
7
import pytest
8
9
def test_arduino_app(app, dut):
10
- expected_bin = os.path.join(
11
- testdir.tmpdir,
12
- 'hello_world_arduino/build/hello_world_arduino.ino.merged.bin'
13
- )
+ expected_bin = os.path.join({
+ os.path.join(testdir.tmpdir,
+ 'hello_world_arduino',
+ 'build',
14
+ 'hello_world_arduino.ino.merged.bin'
15
+ )
16
+ })
17
assert app.binary_file == expected_bin
18
assert app.target == 'esp32'
19
expected_fqbn = (
0 commit comments