-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
39 lines (29 loc) · 855 Bytes
/
config.go
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
package cucumber
// Configuration options
type Config struct {
// Language (default "en")
Language string
// It is a good idea to randomize scenario order to catch
// state dependency issues. (default cucumber.OrderRandom)
Order OrderType
// By default a random seed will be assigned,
// assign any other value to reproduce scenario ordering
// with particular seed
Seed uint64
// Max number of steps to run in parallel
// 0 (default) - unbound
// Use 1 to disable parallel execution
Concurrency uint64
// Stop on first failure
FailFast bool
// Do not execute steps
DryRun bool
// Fail on pending or undefined steps
Strict bool
// Filter scenarios by tags
TagExpression string
// By default it will use dot formatter configured to std out
Formatter Formatter
// By default it will look in features/ dir
Paths []string
}