File: parameterspace.yaml

package info (click to toggle)
jube 2.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,640 kB
  • sloc: python: 8,415; xml: 838; sh: 180; makefile: 14
file content (17 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: parameterspace
outpath: bench_run
comment: A parameterspace example

#Configuration
parameterset:
  name: param_set
  #Create a parameterspace out of two template parameter
  parameter:
    - {name: number, type: int, _: "1,2,4"} #comma separated integer must be quoted
    - {name: text, separator: ;, _: Hello;World}

#Operation
step:
  name: say_hello
  use: param_set #use existing parameterset
  do: echo "$text $number" #shell command