Skip to content

Commit 6729b12

Browse files
committed
Pass ROM path in pytest
1 parent 49bd802 commit 6729b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def pytest_configure():
3737
emu_serv.daemon = True
3838
emu_serv.start()
3939
pytest.emu = subprocess.Popen(
40-
[emu_bin, "-guiserverport", f"{pytest.emu_obj.port}", "-rom", ], stdout=subprocess.PIPE
40+
[emu_bin, "-guiserverport", f"{pytest.emu_obj.port}", "-rom", f"{pytest.emu_obj.rom_path}"], stdout=subprocess.PIPE
4141
)
4242

4343
while not pytest.emu_obj.emulator_status_up():

0 commit comments

Comments
 (0)