-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgwen.conf
53 lines (52 loc) · 1.12 KB
/
gwen.conf
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
#
# THIS FILE IS USED FOR GWEN DEVELOPMENT ONLY
#
# Gwen Settings
# -------------
#
# For more detailed information about each setting see:
# - https://gweninterpreter.org/docs/settings#settings-reference
#
# Format: HOCON (Human-Optimized Config Object Notation superset of JSON)
# - See: https://github.com/lightbend/config/blob/master/HOCON.md
#
gwen {
behavior {
rules = "lenient" # strict|lenient
}
feature {
mode = "imperative" # declarative|imperative
}
launch { # Launch options
options { # See: https://gweninterpreter.org/docs/settings#launch-settings
batch = false
format = [
# "html"
# "results"
# "junit"
# "json"
# "none"
]
dryRun = false
features = [
# "feature1"
# "feature2"
# ..
]
input.data = ""
meta = [
# "meta1"
# "meta2"
# ..
]
parallel = false
report = ${gwen.outDir}/reports
tags = [
# "@tag1"
# "~@tag2"
# ..
]
verbose = false
}
}
}