summaryrefslogtreecommitdiffstats
path: root/etc/conf/cmd_config.yml
blob: ca00075ffff70bd07add4843f982526152703f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
cli:
  arguments:
    config:
      # This is a simple example of arguments.
      # Dovetail has no need of this kind of parameters currently.
      # The arguments must be given orderly at the run-time.
      #
      # docker_tag:
      #   flags: 'docker_tag'
      #   path:
      #     - 'functest/docker_tag'
      #     - 'yardstick/docker_tag'
    control:

  options:
    config:
    control:
      testsuite:
        flags:
          - '--testsuite'
        default: 'ovp.2018.09'
        help: 'compliance testsuite.'
      testarea:
        flags:
          - '--testarea'
        multiple: 'True'
        help: 'Compliance testarea within testsuite. Specify option multiple times to include multiple test areas.'
      testcase:
        flags:
          - '--testcase'
        multiple: 'True'
        help: 'Compliance testcase. Specify option multiple times to include multiple test cases.'
      debug:
        flags:
          - '--debug'
          - '-d'
        is_flag: 'True'
        help: 'Flag for showing debug log on screen.'
      stop:
        flags:
          - '--stop'
          - '-s'
        is_flag: 'True'
        help: 'Flag for stopping on test case failure.'
      report:
        flags:
          - '--report'
          - '-r'
        is_flag: 'True'
        help: 'Create a tarball file to upload to OVP web portal'
      offline:
        flags:
          - '--offline'
        is_flag: 'True'
        help: 'run in offline method, which means not to update the docker upstream images, functest, yardstick, etc.'
      noapivalidation:
        flags:
          - '--no-api-validation'
        is_flag: 'True'
        help: 'disable strict API response validation'
      noclean:
        flags:
          - '--no-clean'
          - '-n'
        is_flag: 'True'
        help: 'Keep all Containers created for debuging.'
      deployscenario:
        flags:
          - '--deploy-scenario'
        help: 'Specify the DEPLOY_SCENARIO which will be used as input by each testcase respectively'
      ramnum:
        flags:
          - '--ram-num'
        help: "Specify the RAM_NUM if it's DPDK scenario. The default value is 512 if not set."
      mandatory:
        flags:
          - '--mandatory'
        is_flag: 'True'
        help: 'Run all mandatory test cases.'
      optional:
        flags:
          - '--optional'
        is_flag: 'True'
        help: 'Run all optional test cases.'