We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a9f318 + b23b2bd commit 379e77aCopy full SHA for 379e77a
pytest-embedded-idf/pytest_embedded_idf/linux.py
@@ -46,6 +46,9 @@ def __init__(
46
if self.app.target != 'linux':
47
raise ValueError(f'Targets do not match. App target: {self.app.target}, Cmd target: "linux".')
48
49
+ if not self.app.elf_file:
50
+ raise ValueError('No ELF file found. Please check the app build folder.')
51
+
52
super().__init__(cmd=[self.app.elf_file], **kwargs)
53
54
def hard_reset(self) -> None:
0 commit comments