Skip to content

Commit

Permalink
Use cargo-test-junit for test verb.
Browse files Browse the repository at this point in the history
  • Loading branch information
petrikvladimir committed Oct 6, 2018
1 parent a41b17a commit d24ce16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion colcon_cargo/task/cargo/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ async def test(self, *, additional_hooks=None): # noqa: D102
# invoke cargo test
rc = await check_call(
self.context,
[CARGO_EXECUTABLE, 'test', '-q',
[CARGO_EXECUTABLE, 'test-junit',
'--name', test_results_path + '/output.xml',
'--target-dir', test_results_path],
cwd=args.path, env=env)

Expand Down

0 comments on commit d24ce16

Please sign in to comment.