summaryrefslogtreecommitdiff
path: root/tests/format/options/compound-or-condition/project.conf
blob: c59cc64f3800918cbd26a240491c79ce545f2726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: test

options:
  debug:
    type: bool
    description: Whether debugging is enabled
    default: False
  logging:
    type: bool
    description: Whether logging is enabled
    default: False

variables:
  logging: 'False'
  (?):
  # Logging is enabled if specified or if debugging is requested
  - logging or debug:
      logging: 'True'