Skip to content

Commit b5ce2fd

Browse files
committed
samples: zephyrbt: Use YAML list syntax for twister tags
Upstream twister now rejects space-separated values in 'tags', raising a ConfigurationError during test discovery: whitespace in 'tags' value 'zephyrbt lua' [...] Space-separated lists are not supported, write the value as a YAML list instead This broke both the nightly CI and the main-next sync runs, which failed to load the lua_conditions and robot_patrol suites. The remaining samples use single-word tags and are unaffected.
1 parent ece4461 commit b5ce2fd

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

samples/subsys/zephyrbt/lua_conditions/sample.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ sample:
99
behaviour tree nodes. Exercises _skipIf, _successIf,
1010
_failureIf, _onSuccess, _onFailure, and _post conditions.
1111
common:
12-
tags: zephyrbt lua
12+
tags:
13+
- zephyrbt
14+
- lua
1315
tests:
1416
samples.zephyrbt.lua_conditions:
1517
platform_allow:

samples/subsys/zephyrbt/robot_patrol/sample.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ sample:
1111
port aliasing, Lua pre/post conditions, and 4 user Lua
1212
override files. Features a live terminal UI animation.
1313
common:
14-
tags: zephyrbt lua
14+
tags:
15+
- zephyrbt
16+
- lua
1517
tests:
1618
samples.zephyrbt.robot_patrol:
1719
platform_allow:

0 commit comments

Comments
 (0)