Skip to content

Commit

Permalink
kunit - support exec init
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba-moo committed Jun 7, 2024
1 parent 82789ad commit 3345aea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contest/remote/kunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
name=executor
group=test-group
test=test-name
init=force / continue / next
[remote]
branches=https://url-to-branches-manifest
[local]
Expand Down Expand Up @@ -172,7 +173,8 @@ def main() -> None:
url_path=config.get('www', 'url') + '/' + config.get('local', 'json_path'),
patches_path=config.get('local', 'patches_path', fallback=None),
life=life,
tree_path=config.get('local', 'tree_path'))
tree_path=config.get('local', 'tree_path'),
first_run=config.get('executor', 'init', fallback="continue"))
f.run()
life.exit()

Expand Down

0 comments on commit 3345aea

Please sign in to comment.