Skip to content

Commit 7a73dfc

Browse files
crossbar: separate coordinator guest module arguments
Python allows running a module via 'python -mmodule' (single argument). To be able to record the coordinator's coverage in a future commit, 'coverage run' is used instead of 'python'. The coverage tool is a little pickier than python and requires '-m' and the actual module name to be separate arguments. Since it will not hurt to have the arguments separated generally, split them. Signed-off-by: Bastian Krause <bst@pengutronix.de>
1 parent d0fc794 commit 7a73dfc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.crossbar/config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ workers:
5454
type: guest
5555
executable: python3
5656
arguments:
57-
- -mlabgrid.remote.coordinator
57+
- -m
58+
- labgrid.remote.coordinator
5859
options:
5960
workdir: .
6061
env:

0 commit comments

Comments
 (0)