You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed the build process for the test runner, updated the test runner to use glob, and updated the test runner to use the flash_image parameter for directories
Copy file name to clipboardexpand all lines: src/test_driver/efr32/py/pw_test_runner/pw_test_runner.py
+16-20
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@
16
16
#
17
17
18
18
importargparse
19
+
importglob
19
20
importlogging
20
21
importos
21
22
importsubprocess
@@ -60,12 +61,7 @@ def _parse_args():
60
61
parser.add_argument(
61
62
"-f",
62
63
"--flash_image",
63
-
help="a firmware image which will be flashed berfore runnning the test",
64
-
)
65
-
parser.add_argument(
66
-
"-y",
67
-
"--flash_directory",
68
-
help="A directory containing image files, each of which will be flashed and then run.",
64
+
help="A firmware image which will be flashed berfore runnning the test. Or a directory containing firmware images, each of which will be flashed and then run.",
0 commit comments