Files
testium/doc/examples/example_simple.tum
François 2177715641 examples: long_wait py_func/lua_func to exercise Stop
Two extra steps in example_simple.tum that sleep for 10s, used to
verify that pressing Stop interrupts engaged blocking steps.
2026-05-17 10:42:49 +02:00

44 lines
1.1 KiB
Plaintext

main:
name: Test conditionals
version: 0.1
stop_on_failure: False
steps:
- py_func:
name: python function call
doc: The purpose of this step is to demonstrate the py_func test item
file: utils.py
func_name: funcToBeExecuted
param:
- 123
- lua_func:
name: lua function call
doc: The purpose of this step is to demonstrate the lua_func test item
file: lua_func.lua
func_name: func_to_be_executed
param:
- 123
- py_func:
name: python long wait
doc: The purpose of this step is to try the tasks "stop" interruption
file: utils.py
func_name: long_wait
param:
- 10
- lua_func:
name: lua long wait
doc: The purpose of this step is to try the tasks "stop" interruption
file: lua_func.lua
func_name: long_wait
param:
- 10
- sleep:
name: sleep item
dialog: true
timeout: <| 3600 + random.randint(1, 10) |>
no_fail: true