You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+23-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,9 @@ WIP mode. Yet works for a few months in our company (doesn't mean it's stable).
7
7
8
8
## Usage
9
9
10
-
Paws looks for config at `./paws.yml` path by default, but path to config can be specified after run command.
10
+
Paws looks for config at `${PAWS_HOME}/paws.yml` path by default, but path to config can be specified after run command.
11
+
12
+
By default `PAWS_HOME=~/.kittypaws`.
11
13
12
14
Using cargo:
13
15
```bash
@@ -107,6 +109,26 @@ plugins:
107
109
config02: 44
108
110
...
109
111
```
112
+
113
+
### Run duration
114
+
115
+
You can specify if the test run should stop after some time. To configure it, add
116
+
117
+
```yaml
118
+
duration: <Duration in ISO 8601 format>
119
+
```
120
+
121
+
to the root of the config.
122
+
123
+
Example:
124
+
125
+
```yaml
126
+
duration: P1D
127
+
plugins:
128
+
- name: example
129
+
...
130
+
```
131
+
110
132
### Startup configuration
111
133
112
134
Plugins can start executing their tasks immediately, or after some time. You can configure them to wait for their interval first or wait for a specific delay and then continue to work normally.
0 commit comments